#main {
    margin: 100px 0px;
}

/* Header Styles */
#header.header-transparent {
    background: #BD1007;
    transition: all ease-in-out 0.4s;
    padding: 15px 0;
}


/* Search Section Styles */
.search-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.search-container .input-group {
    max-width: 800px;
    margin: 0 auto;
}

.search-container .form-control {
    border-radius: 50px 0 0 50px;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e9ecef;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-container .form-control:focus {
    border-color: #6c757d;
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25);
}

.search-container .btn-secondary {
    border-radius: 0 50px 50px 0;
    padding: 0.75rem 2rem;
    font-weight: 500;
    border: none;
    background-color: #F4953F;
    transition: all 0.3s ease;
}

.search-container .btn-secondary:hover {
    background-color: #F4953F;
    transform: translateY(-1px);
}

.search-container .btn-secondary i {
    margin-right: 8px;
}

.active-filters .badge {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
}

.active-filters .badge a {
    font-weight: bold;
    font-size: 1.1rem;
}

.form-select:focus,
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Art Card Styles */
.art-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.art-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-code {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-info {
    margin: 1rem 0;
    font-size: 0.9rem;
}

.contact-info a {
    color: #F4953F;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: #e88a2e;
    text-decoration: underline;
}

.category-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #f8f9fa;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
}

/* Pagination Styles */
.pagination {
    margin-top: 3rem;
    justify-content: center;
}

.pagination .page-link {
    color: #F4953F;
    border: 1px solid #dee2e6;
    padding: 0.5rem 1rem;
    background-color: #fff;
    border-radius: 4px;
    margin: 0 2px;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background-color: #F4953F;
    border-color: #F4953F;
    color: #fff;
    font-weight: bold;
}

.pagination .page-item.disabled .page-link {
    color: #adb5bd;
    background-color: #f8f9fa;
    pointer-events: none;
}

.pagination .page-link:hover {
    background-color: #f8f9fa;
    border-color: #F4953F;
    color: #F4953F;
}

.pagination .page-item.active .page-link:hover {
    background-color: #F4953F;
    color: #fff;
}

/* No Results Styles */
.no-results {
    text-align: center;
    padding: 4rem 0;
    background: #f8f9fa;
    border-radius: 15px;
    margin: 2rem 0;
}

.no-results i {
    font-size: 3.5rem;
    color: #adb5bd;
    margin-bottom: 1.5rem;
}

.no-results h3 {
    color: #495057;
    font-weight: 500;
    margin-bottom: 1rem;
}

.no-results p {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Alert Styles */
.alert {
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .search-container {
        padding: 1.5rem;
    }

    .card-img-top {
        height: 180px;
    }

    .pagination .page-link {
        padding: 0.4rem 0.8rem;
    }
}


/* Tambahkan di bagian Search Section Styles */

/* Category Select Styling */
.category-select {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

.category-select:focus {
    border-color: #F4953F;
    box-shadow: 0 0 0 0.2rem rgba(244, 149, 63, 0.25);
}

.category-select:hover {
    border-color: #F4953F;
}

/* Search Input Group Styling */
.search-input-group {
    max-width: none;
}

.search-input-group .form-control {
    border-radius: 50px 0 0 50px;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e9ecef;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input-group .form-control:focus {
    border-color: #F4953F;
    box-shadow: 0 0 0 0.2rem rgba(244, 149, 63, 0.25);
}

/* Form Labels */
.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-label i {
    margin-right: 0.5rem;
    color: #F4953F;
}

/* Active Filters Enhanced */
.active-filters {
    padding: 1rem;
    background-color: rgba(244, 149, 63, 0.05);
    border-radius: 10px;
    border-left: 4px solid #F4953F;
}

.active-filters .badge {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.active-filters .badge a {
    font-weight: bold;
    font-size: 1.1rem;
    margin-left: 0.25rem;
}

.active-filters .btn-outline-secondary {
    border-color: #6c757d;
    color: #6c757d;
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
}

.active-filters .btn-outline-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .search-container .row {
        gap: 1rem;
    }

    .search-container .col-md-4,
    .search-container .col-md-8 {
        margin-bottom: 1rem;
    }

    .active-filters {
        margin-top: 1.5rem;
    }

    .active-filters .d-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}
