body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    color: #fff;
    padding-top: 80px;
}

.container {
    max-width: 600px;
}

.app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    z-index: 100;
}

.header-row {
    flex-wrap: nowrap;
}

.top-tabs {
    display: flex;
    gap: 5px;
    margin-left: 10px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .top-tabs {
        flex-wrap: nowrap;
    }
}

.top-tab-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    padding: 5px 8px;
    border-radius: 15px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.top-tab-btn.active {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.top-tab-btn i {
    font-size: 0.9rem;
}

.app-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.back-btn,
.help-btn,
.settings-btn,
.nav-toggle-header {
    color: #fff;
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
}

/* Dropdown menu dark theme */
.dropdown-menu {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.dropdown-item {
    color: #fff;
    background: none;
    border: none;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.dropdown-item i {
    margin-right: 8px;
}

.tab-nav {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 5px;
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 5px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}

.add-recipe-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
}

.add-recipe-card .collapsible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 15px;
}

.add-recipe-card .collapsible-header h5 {
    margin: 0;
    text-align: left;
}

.add-recipe-card .collapsible-header i {
    font-size: 1.2rem;
}

.image-upload-area {
    width: 100%;
    height: 180px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.image-upload-area:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

.upload-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.upload-placeholder i {
    font-size: 3rem;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-input,
.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 15px;
}

.recipe-input::placeholder,
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.recipe-input:focus,
.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    box-shadow: none;
}

.servings-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.servings-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.servings-controls button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

.servings-controls span {
    font-size: 1.2rem;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.ingredients-section {
    margin-bottom: 15px;
}

.ingredients-section label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.save-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.save-btn:disabled {
    opacity: 0.5;
}

.recipe-list h5 {
    margin-bottom: 15px;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.6);
}

.recipe-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.recipe-thumbnail {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.recipe-thumbnail.placeholder {
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.recipe-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recipe-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

.planner-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.meal-thumbnail {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.meal-thumbnail.placeholder {
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.meal-info {
    flex: 1;
}

.remove-btn {
    background: rgba(255, 100, 100, 0.2);
    border: none;
    color: #ff6b6b;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}

.add-btn {
    background: rgb(100 255 162 / 20%);
    border: none;
    color: #27e48d;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}

.shopping-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.shopping-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-bottom: 8px;
    cursor: pointer;
}

.shopping-item.checked .item-text {
    text-decoration: line-through;
    opacity: 0.5;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 5px;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 25px;
    max-width: 540px;
    max-height: 80vh;
    overflow-y: auto;
}

.close-modal {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    cursor: pointer;
}

.footer-note {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.4);
}

/* Camera button */
.camera-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    margin-top: 10px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

/* Analyze button */
.analyze-btn {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.analyze-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

/* Analyzing state */
.analyzing {
    text-align: center;
    padding: 40px;
}

.analyzing .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Search Tab */
.search-section {
    margin-bottom: 20px;
}

.search-section h5 {
    margin-bottom: 15px;
}

.search-input-group {
    display: flex;
    gap: 10px;
}

.search-input-group .form-control {
    flex: 1;
    margin-bottom: 0;
}

.search-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Cuisine Quick Filters */
.cuisine-filters {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.cuisine-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.cuisine-btn {
    padding: 6px 12px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.cuisine-btn:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: #667eea;
}

.loading {
    text-align: center;
    padding: 40px;
}

.loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.results-count {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.filter-badge {
    display: inline-block;
    padding: 2px 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    font-size: 0.75rem;
    margin-left: 8px;
}

.search-result-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 10px;
}

.search-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.search-info {
    flex: 1;
}

.search-info h6 {
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.search-info small {
    color: rgba(255, 255, 255, 0.6);
}

.add-meal-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

.remove-recipe-btn {
    width: 25px;
    height: 25px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
}

/* Collapsible Shopping Groups */
.shopping-groups {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shopping-group {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.group-header {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    user-select: none;
}

.group-header:hover {
    background: rgba(255, 255, 255, 0.15);
}

.group-icon {
    font-size: 1.2rem;
    margin-right: 10px;
}

.group-name {
    flex: 1;
    font-weight: 600;
    font-size: 1rem;
}

.group-count {
    color: rgba(255, 255, 255, 0.6);
    margin-right: 10px;
}

.group-arrow {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.group-items {
    padding: 8px 0;
}

.shopping-item {
    display: flex;
    align-items: center;
    padding: 10px 16px 10px 40px;
    cursor: pointer;
    transition: background 0.2s;
}

.shopping-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.shopping-item.checked {
    opacity: 0.5;
}

.shopping-item.checked .item-text {
    text-decoration: line-through;
}

/* Settings Modal */
.settings-section {
    margin-bottom: 20px;
}

.settings-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #a0c4ff;
}

.settings-hint {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.settings-hint a {
    color: #a0c4ff;
}

/* User Section in Settings */
.user-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.user-info i {
    font-size: 2rem;
    color: #667eea;
}

.user-info div {
    display: flex;
    flex-direction: column;
}

.user-info strong {
    color: #333;
}

.user-info small {
    color: #666;
    font-size: 12px;
}

.login-prompt {
    text-align: center;
    color: #666;
    margin-bottom: 10px;
}

.login-btn,
.logout-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.login-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.login-btn:hover {
    opacity: 0.9;
}

.logout-btn {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
}

.logout-btn:hover {
    background: #fee;
    color: #c00;
    border-color: #c00;
}

.help-btn-small {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

/* Shopping List Categories */
.shopping-item.category {
    background: rgba(102, 126, 234, 0.2);
    font-weight: 600;
    cursor: default;
}

.shopping-item.category .item-text {
    color: #a0c4ff;
}

/* Recipe Detail Modal */
.recipe-detail-modal {
    max-height: 80vh;
    overflow-y: auto;
    padding: 0;
    position: relative;
}

.recipe-detail-modal .close-modal-btn {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

.recipe-detail-modal .detail-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recipe-detail-modal .detail-body {
    padding: 20px;
}

.recipe-detail-modal h3 {
    margin: 0 0 10px 0;
}

.detail-servings {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.detail-section {
    margin-bottom: 20px;
}

.detail-section h5 {
    margin-bottom: 10px;
    color: #a0c4ff;
}

.ingredients-list {
    padding-left: 20px;
}

.ingredients-list li {
    margin-bottom: 5px;
    line-height: 1.4;
}

.instructions-list {
    padding-left: 20px;
}

.instructions-list li {
    margin-bottom: 10px;
    line-height: 1.5;
    padding-left: 5px;
}

/* AI Enhancements */
.ai-enhance-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.ai-enhance-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.ai-enhance-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

.ai-enhancements {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-top: 10px;
}

.ai-enhancements h5 {
    margin: 0 0 10px 0;
    color: #a0c4ff;
}

.ai-enhancements p {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.8);
}

.ai-enhancements strong {
    color: #a0c4ff;
}

.ai-text {
    white-space: pre-line;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.ai-tips {
    background: rgba(255, 193, 7, 0.15);
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
    border-left: 3px solid #ffc107;
    color: rgba(255, 255, 255, 0.9);
}

.cached-note {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* Search Actions */
.search-actions {
    display: flex;
    gap: 8px;
}

.search-actions .add-meal-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

.search-actions .planner-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

/* User Button */
.user-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.user-btn:hover {
    transform: scale(1.1);
}

/* Auth Modal */
.auth-modal {
    background: white;
    border-radius: 16px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.auth-modal h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.auth-error {
    background: #fee;
    color: #c00;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: center;
}

.auth-modal .form-group {
    margin-bottom: 15px;
}

.auth-modal label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}

.auth-modal .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.auth-modal .form-control:focus {
    outline: none;
    border-color: #667eea;
}

.auth-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

.auth-submit-btn:hover:not(:disabled) {
    opacity: 0.9;
}

.auth-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.auth-switch a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}

/* Dark Theme */
body.dark-theme {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

body.dark-theme .app-header {
    background: rgba(0, 0, 0, 0.5);
}

body.dark-theme .add-recipe-card,
body.dark-theme .recipe-card,
body.dark-theme .planner-card,
body.dark-theme .search-result-card,
body.dark-theme .shopping-group {
    background: rgba(255, 255, 255, 0.08);
}

body.dark-theme .modal-content {
    background: #1a1a1a;
}

body.dark-theme .group-header {
    background: rgba(255, 255, 255, 0.08);
}

body.dark-theme .image-upload-area {
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-theme .servings-input,
body.dark-theme .recipe-input,
body.dark-theme .form-control {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

body.dark-theme .settings-section label {
    color: #a0c4ff;
}

body.dark-theme .help-btn-small {
    background: rgba(255, 255, 255, 0.1);
}

body.dark-theme .ai-enhancements {
    background: rgba(102, 126, 234, 0.1);
}

/* Danger Button */
.danger-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.danger-btn:hover {
    background: rgba(220, 53, 69, 0.4);
}

/* Tab icons */
.tab-btn i {
    margin-right: 5px;
}

/* Filter Button */
.filter-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

/* Light grey border for recipe rows */
.border-bottom {
    border-bottom-color: #ddd !important;
}

/* Filters Panel */
.filters-panel {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    margin-top: 15px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-group {
    margin-bottom: 15px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #a0c4ff;
    font-size: 0.9rem;
}

.category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.category-chips .filter-chip {
    padding: 5px 10px;
    font-size: 0.8rem;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-chip:hover {
    background: rgba(255, 255, 255, 0.2);
}

.filter-chip.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
}

.filter-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.clear-filters-btn {
    padding: 8px 16px;
    background: rgba(255, 100, 100, 0.2);
    border: none;
    border-radius: 20px;
    color: #ff6b6b;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.clear-filters-btn:hover {
    background: rgba(255, 100, 100, 0.4);
}
