 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
 }

 body {
     background-color: rgb(235, 235, 235);
 }

 #main {
     display: flex;
     justify-content: center;
     gap: 30px;
     flex-wrap: wrap;
     padding: 30px 20px;
 }

 .navbar {
     background-color: #fff;
     padding: 20px 40px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     align-items: center;
     position: sticky;
     top: 0;
     z-index: 1000;
 }

 .navbar h2 {
     font-size: 24px;
     color: #ff6347;
    /* color: #fff; */
     font-weight: bold;
 }

 .navbar .filters {
     display: flex;
     gap: 15px;
     flex-wrap: wrap;
     align-items: center;
 }

 select,
 input[type="text"] {
     padding: 10px;
     width: 180px;
     border: 1px solid #ccc;
     border-radius: 8px;
     font-size: 15px;
     outline: none;
     background-color: #fff;
     transition: 0.3s;
 }

 select:focus,
 input:focus {
     /* border-color: #ff6347; */
    border-color: #ff6347;
     box-shadow: 0 0 6px rgba(255, 99, 71, 0.3);
 }

 #card {
     background-color: #fff;
     border-radius: 12px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     width: 300px;
     overflow: hidden;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 #card:hover {
     transform: translateY(-5px);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
 }

 #card img {
     width: 100%;
     height: 200px;
     object-fit: cover;
 }

 #card h1 {
     font-size: 20px;
     color: #333;
     margin: 10px 15px 5px;
 }

 #card p {
     font-size: 14px;
     color: #666;
     margin: 5px 15px;
 }

 #card button {
     display: block;
     width: calc(100% - 30px);
     margin: 15px;
     padding: 10px;
     background-color: #ff6347;
     color: white;
     border: none;
     border-radius: 8px;
     font-size: 16px;
     cursor: pointer;
     transition: background-color 0.3s ease;
 }
 
 #card button:hover {
     background-color: #e5533d;
 }