::-webkit-scrollbar {
   width: 5px;
   height: 9px;
  
}

::-webkit-scrollbar-thumb {
   background: #444;
   border-radius: 5px;
}

.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
}

.search-container input {
    color: #fff;
    padding: 10px;
    width: 300px;
    background: #000;
    border-radius: 8px;
    outline: none;
}

.search-container button {
    width: 50px;
    padding: 10px 10px;
    background-color: #1976D2;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.accordion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.accordion-content {
    background: #000;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    transition: background-color 0.3s, transform 0.2s;
}

.accordion-content:hover {
    background-color: #333;
    transform: scale(1.05);
}

.accordion-content img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.accordion-content header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-content .title {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
}

.accordion-content i {
    font-size: 14px;
    color: #dcd6d6;
}

.accordion-content .description {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    font-size: 14px;
    color: #dcd6d6;
    margin-top: 10px;
}

.accordion-content .description:hover {
    color: #1976D2; /* Blue on hover */
}

.accordion-content.open .description {
    margin-top: 10px;
}
