.search-container {
    width: 100%;
    max-width: 600px;
    margin-bottom: 2rem;
}

.search-bar {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #333;
    color: #fff;
    box-sizing: border-box;
}

.items-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    width: auto;
}

.item-card {
    background: #2a2929;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.item {
    background: #fdff71;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 5px 5px 5px #252222;
    margin-bottom: 15px;
    transition: box-shadow 0.3s ease-in-out;
}

.item:hover {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5); /* Shadow on hover */
  transform: scale(1.5, 1.5);
}

/* Fade in the pseudo-element with the bigger shadow */
.item:hover::after {
  opacity: 1;
}


.item h3 {
    margin-top: 0;
    color: #9d09a5;
    text-transform: capitalize;
    text-align: center;
}

.item p {
    margin: 10px 0;
    color: #666;
}

