.category-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

/* Category Box */
.category-box {
    display: flex;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 700px;
    overflow: hidden;
}

/* Tab Buttons */
.category-btn {
    flex: 1;
    padding: 12px 20px;
    text-align: center;
    border: none;
    background: white;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 8px;
    margin-right: 5px;
}

/* Active Tab */
.category-btn.active {
    background: #1d3461;
    color: white;
}

.category-btn:hover{
    background: #1d3461;
    color: white;
}

/* Responsive */
@media (max-width: 600px) {
    .category-box {
        flex-direction: column;
    }
    .category-btn {
        width: 100%;
        margin-bottom: 5px;
    }
}

/* Search Box */
.search-box {
    /* position: relative; */
    max-width: 500px;
    margin: 0 auto 20px;
}

.search-box input {
    padding-left: 40px;
}

.search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: gray;
}