/* Services Page Modernization - Cyberpunk */
:root {
    --primary-bg: #020204;
    --secondary-bg: #0a0a0a;
    --card-bg: #121212;
    --highlight: #FCEE0A; /* Neon Yellow */
    --highlight-hover: #d4c805;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --border-color: #333333;
    --danger: #ff0055; /* Neon Red */
    --success: #00ff9f; /* Neon Green */
    --warning: #ffb800;
    --info: #00ffff; /* Neon Cyan */
    --border-radius-sm: 0;
    --border-radius: 0;
    --border-radius-lg: 0;
    --transition: none;
    --shadow-sm: 0 0 5px rgba(252, 238, 10, 0.1);
    --shadow: 0 0 10px rgba(252, 238, 10, 0.1);
    --shadow-lg: 0 0 20px rgba(252, 238, 10, 0.2);
}

body {
    background-color: var(--primary-bg);
    color: var(--text-primary);
    font-family: 'Inter', monospace;
}

/* Accessibility: focus styles for keyboard users */
.platform-filter:focus-visible,
.currency-button:focus-visible,
.details-button:focus-visible {
    outline: 2px solid var(--highlight);
    outline-offset: 2px;
    box-shadow: none;
}

/* Fix main-top responsive behavior */
.main-top {
    padding: 120px 0 40px 0;
    position: relative;
}

@media (min-width: 768px) {
    .main-top {
        padding: 200px 0 40px 0;
    }
}

@media (min-width: 1200px) {
    .main-top {
        padding: 250px 0 40px 0;
    }
}

/* App content positioning */
.app-content_services {
    width: 100%;
    position: relative;
    margin-top: -80px;
}

@media (min-width: 1200px) {
    .app-content_services {
        margin-top: -200px;
    }
}

@media (max-width: 767px) {
    .app-content_services {
        margin-top: -40px;
    }
}

/* Row and column adjustments */
.row {
    width: 100%;
    margin: 0;
}

.col-lg-12 {
    padding: 0;
}


/* Platform Filters */
.platform-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    justify-content: flex-start;
}

.platform-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: none;
    box-shadow: var(--shadow-sm);
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 768px) {
    .platform-filters {
        gap: 1rem;
    }
    .platform-filter {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.5rem;
    }
}

.platform-filter:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--highlight);
    color: var(--highlight);
}

.platform-filter.active {
    background: var(--highlight);
    color: #000;
    border-color: var(--highlight);
}

/* Search & Filter Section */
.search-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .search-container {
        flex-direction: row;
    }
}

.search-box {
    flex: 1;
    position: relative;
    width: 100%;
}

@media (min-width: 768px) {
    .search-box {
        min-width: 250px;
    }
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0;
    color: var(--text-primary);
    font-size: 1rem;
    transition: none;
    box-shadow: var(--shadow-sm);
    min-height: 2.75rem;
    font-family: 'Courier New', monospace;
}

/* Improve placeholder contrast slightly for readability */
.search-input::placeholder {
    color: rgba(241, 245, 249, 0.65);
}

.search-input:focus {
    outline: none;
    border-color: var(--highlight);
    box-shadow: 0 0 5px var(--highlight-light);
}

.search-icon {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1rem;
    pointer-events: none;
}

.app-content_services .currency-dropdown {
    position: relative;
    width: 100%;
}
@media (min-width: 768px) {
    .app-content_services .currency-dropdown {
        width: auto;
    }
}

.app-content_services .currency-button {
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0;
    color: var(--text-primary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: none;
    box-shadow: var(--shadow-sm);
    min-width: 200px;
    min-height: 2.75rem;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    font-family: 'Courier New', monospace;
}

/* Category dropdown (single trigger) */
.category-filter-container { position: relative; flex: 1; min-width: 250px; max-width: 420px; }
.category-trigger { width: 100%; background: var(--card-bg); color: var(--text-primary); border: 1px solid var(--border-color); border-radius: 0; padding: 1rem 1.5rem; min-height: 2.75rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Courier New', monospace; }
.category-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--card-bg); border: 1px solid var(--highlight); border-top: 0; box-shadow: 0 0 15px rgba(0,0,0,0.5); max-height: 280px; overflow-y: auto; z-index: 10000; }
.category-menu.open { display: block; }
.category-search-wrap { position: sticky; top: 0; background: var(--card-bg); padding: 0.75rem; border-bottom: 1px solid var(--border-color); }
.category-search { width: 100%; padding: 0.6rem 0.8rem; background: rgba(0,0,0,0.3); border: 1px solid var(--border-color); border-radius: 0; color: var(--text-primary); font-family: 'Courier New', monospace; }
.category-option { padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.6rem; color: var(--text-secondary); cursor: pointer; font-family: 'Courier New', monospace; }
.category-option:hover { background: var(--highlight-light); color: var(--highlight); }
.category-option i { color: var(--text-secondary); width: 18px; display: inline-flex; justify-content: center; }
.category-option:hover i { color: var(--highlight); }

/* Remove old custom-select styles to avoid overlap */
.custom-select-wrapper, .custom-select, .custom-select-trigger, .custom-options { display: none; }


/* Desktop: allow currency button to size to content */
@media (min-width: 992px) {
    .app-content_services .currency-button { width: auto; }
}

.app-content_services .currency-button:hover {
    border-color: var(--highlight);
    color: var(--highlight);
}

.app-content_services .currency-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--highlight);
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    z-index: 10000; /* Significantly increase z-index */
    max-height: 60vh;
    overflow-y: auto;
    display: none;
    transform: translateZ(0); /* Force GPU acceleration */
}

/* Ensure services page dropdown menu is properly positioned */
.app-content_services #services-currencies-list {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
    width: 100% !important;
    min-width: 200px !important;
}

/* Ensure dropdown menu displays properly when active */
.app-content_services .currency-dropdown-menu.show {
    display: block !important;
}

.app-content_services .currency-dropdown-item {
    padding: 0.75rem 1.25rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: none;
    text-align: center;
    position: relative; /* Add positioning context */
    z-index: 1; /* Ensure items stack properly */
    font-family: 'Courier New', monospace;
}

.app-content_services .currency-dropdown-item:hover {
    background: var(--highlight-light);
    color: var(--highlight);
}

.app-content_services .currency-dropdown-item a {
    color: inherit;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0; /* Add padding to increase clickable area */
}

/* Add more specificity to override any conflicting styles */
.app-content_services #currencies-list.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure the dropdown is above modals and other high z-index elements */
.modal-backdrop {
    z-index: 9000;
}

.modal {
    z-index: 9500;
}

/* Card Components */
.services-card {
    background: var(--card-bg);
    border-radius: 0;
    border: 1px solid var(--highlight);
    box-shadow: var(--shadow);
    overflow: visible;
    margin-bottom: 1rem;
    /* Removed clip-path to allow dropdown overflow */
    position: relative; /* Ensure stacking context */
    z-index: 100; /* Higher than next sibling (services-category) */
}

@media (min-width: 768px) {
    .services-card {
        margin-bottom: 1.5rem;
    }
}

.card-body {
    padding: 1rem;
}

@media (min-width: 768px) {
    .card-body {
        padding: 1.5rem;
    }
}

.p-4 {
    padding: 1rem !important;
}

/* Services Categories */
.services-category {
    margin-bottom: 1.5rem;
    border-radius: 0;
    overflow: visible;
    background: var(--card-bg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    width: 100%;
}

@media (min-width: 768px) {
    .services-category {
        margin-bottom: 2.5rem;
    }
}

.category-header {
    background: rgba(252, 238, 10, 0.05);
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .category-header {
        padding: 1.25rem 1.5rem;
    }
}

.category-title {
    color: var(--highlight);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .category-title {
        font-size: 1.25rem;
    }
}

.category-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    border: none; /* Removed border */
    background: transparent;
    font-size: 1.25rem;
    margin-right: 0.5rem;
    color: var(--highlight);
}

@media (min-width: 768px) {
    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* Ensure consistent icon styling in category headers */
.category-icon .fs-ig, 
.category-icon .fs-fb,
.category-icon .fs-tw,
.category-icon .fs-yt,
.category-icon .fs-tiktok,
.category-icon .fs-spotify,
.category-icon .fs-twitch,
.category-icon .fs-snapchat,
.category-icon .fs-soundcloud {
    line-height: 1;
    color: var(--highlight); /* Override brand colors for consistent theme */
}

/* Services Table */
.services-table-container {
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

/* Avoid scroll chaining on touch devices inside the table area */
.services-table-container {
    overscroll-behavior: contain;
}

.services-table * {
    font-size: 0.75rem !important;
}

.table-header th {
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.75rem 1rem;
}

.service-row td {
    font-size: 0.75rem !important;
    padding: 0.75rem 1rem;
}

.service-id, .service-price, .service-limits {
    font-size: 0.75rem !important;
}

.service-name {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
}

.details-button {
    font-size: 0.75rem !important;
    padding: 0.4rem 0.8rem !important;
    min-height: 2rem !important;
}

@media (min-width: 768px) {
    .service-row td {
        padding: 1.25rem 1.5rem;
    }
}

.service-row:last-child td {
    border-bottom: none;
}

.service-id {
    font-family: 'Courier New', monospace;
    color: var(--highlight);
    font-weight: 500;
    font-size: 0.875rem;
    border: 1px solid var(--highlight);
    padding: 2px 6px;
}

.service-name {
    color: var(--text-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.3;
}

/* Prevent long names from overflowing */
.service-name { word-break: break-word; overflow-wrap: anywhere; }

/* Prevent overflow on long service names */
.service-name {
    word-break: break-word;
    overflow-wrap: anywhere;
}

.service-id-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-service-id {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0;
}

.copy-service-id:hover {
    color: var(--highlight);
}

.copy-service-id .fa-check {
    color: var(--success);
}

@media (min-width: 768px) {
    .service-name {
        font-size: 1rem;
    }
}

.service-price {
    font-weight: 600;
    color: var(--highlight);
    font-size: 1rem;
}

@media (min-width: 768px) {
    .service-price {
        font-size: 1.1rem;
    }
}

.service-limits {
    font-family: 'Courier New', monospace;
    white-space: nowrap;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.service-time {
    white-space: nowrap;
    color: var(--text-secondary);
}

.details-button {
    padding: 0.625rem 1rem;
    background: transparent;
    color: var(--highlight);
    border: 1px solid var(--highlight);
    border-radius: 0;
    font-size: 0.875rem;
    cursor: pointer;
    transition: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.5rem;
    -webkit-tap-highlight-color: transparent;
    text-transform: uppercase;
    clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
}

.details-button:hover {
    background: var(--highlight);
    color: #000;
    box-shadow: 0 0 10px var(--highlight);
}

/* Modal Styling */
.modal-content {
    background: var(--card-bg);
    border: 1px solid var(--highlight);
    border-radius: 0;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

@media (min-width: 768px) {
    .modal-content {
        border-radius: 0;
    }
}

.modal-header {
    padding: 1rem;
    border-bottom: 1px solid var(--highlight);
    background: rgba(252, 238, 10, 0.05);
}

@media (min-width: 768px) {
    .modal-header {
        padding: 1.5rem;
    }
}

.modal-title {
    color: var(--highlight);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.3;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .modal-title {
        font-size: 1.25rem;
    }
}

.modal-body {
    padding: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    font-family: 'Courier New', monospace;
}

@media (min-width: 768px) {
    .modal-body {
        padding: 1.5rem;
        font-size: 1rem;
    }
}

.modal-footer {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .modal-footer {
        padding: 1.25rem 1.5rem;
    }
}

.btn-close {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--danger);
    border: 1px solid var(--danger);
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: none;
    min-height: 2.75rem;
    width: 100%;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
}

@media (min-width: 768px) {
    .btn-close {
        width: auto;
    }
}

.btn-close:hover {
    background: var(--danger);
    color: #fff;
    box-shadow: 0 0 10px var(--danger);
}

/* Empty State */
.empty-state {
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .empty-state {
        padding: 3rem;
    }
}

.empty-state-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    color: var(--highlight);
}

@media (min-width: 768px) {
    .empty-state-icon {
        font-size: 3rem;
    }
}

.empty-state-text {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--highlight);
    font-family: 'Courier New', monospace;
}

@media (min-width: 768px) {
    .empty-state-text {
        font-size: 1.125rem;
    }
}

.empty-state-subtext {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Loading States and User Feedback */
.loading-state {
    position: relative;
}

.loading-state::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0;
    z-index: 10;
}

.loading-state::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2rem;
    height: 2rem;
    border: 3px solid var(--border-color);
    border-top-color: var(--highlight);
    border-radius: 50%;
    z-index: 11;
    animation: none; /* No animation per request */
}

/* Loading State */
.loading-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.loading-spinner {
    width: 2.5rem;
    height: 2.5rem;
    border: 3px solid var(--border-color);
    border-radius: 50%;
    border-top-color: var(--highlight);
    animation: none;
}

/* Large displays */
@media (min-width: 1401px) {
    .card-body {
        padding: 2rem;
    }
    
    .platform-filter {
        width: 4rem;
        height: 4rem;
        font-size: 1.75rem;
    }
    
    .category-header {
        padding: 1.5rem 2rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .category-icon {
        width: 48px;
        height: 48px;
        font-size: 1.75rem;
    }
    
    .table-header th {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
    
    .service-row td {
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
    }
    
    .details-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Extra-large displays */
@media (min-width: 1921px) {
    .platform-filter {
        width: 5rem;
        height: 5rem;
        font-size: 2rem;
    }
    
    .card-body {
        padding: 2.5rem;
    }
    
    .service-row td {
        padding: 1.75rem 2.5rem;
        font-size: 1.2rem;
    }
    
    .category-title {
        font-size: 1.75rem;
    }
    
    .category-icon {
        width: 56px;
        height: 56px;
        font-size: 2rem;
    }
}

/* Enhanced Mobile Table Styling */
@media (max-width: 767px) {
    /* Improved card styling for mobile */
    .services-card, 
    .services-category {
        width: 100%;
        border-radius: 0;
        margin-left: 0;
        margin-right: 0;
        overflow: visible;
    }
    
    /* Better mobile table layout */
    .services-table-container {
        overflow-x: hidden;
    }
    
    .services-table {
        display: block;
    }
    
    .table-header {
        display: none;
    }
    
    .service-row {
        display: block;
        padding: 0;
        margin-bottom: 8px;
        border-bottom: 1px solid var(--border-color);
        position: relative;
        background-color: rgba(255, 255, 255, 0.02);
    }
    
    .service-row:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .service-row td {
        border: none;
        padding: 0;
        margin: 0;
    }
    
    /* Header section with ID and name */
    .service-row td:nth-child(1),
    .service-row td:nth-child(2) {
        padding: 12px 15px;
        display: flex;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    .service-row td:nth-child(1) {
        padding-right: 0;
        width: auto;
    }
    
    .service-row td:nth-child(2) {
        flex: 1;
    }
    
    /* Info section with price and limits */
    .service-row td:nth-child(3),
    .service-row td:nth-child(4) {
        display: inline-block;
        padding: 10px 15px;
        vertical-align: middle;
    }
    
    .service-row td:nth-child(3) {
        width: 48%;
    }
    
    .service-row td:nth-child(4) {
        width: 52%;
        text-align: left;
    }
    
    /* Average time if present */
    .service-row td:nth-child(5) {
        display: block;
        padding: 0 15px 10px;
        text-align: left;
    }
    
    /* Button area */
    .service-row td:last-child {
        display: block;
        padding: 10px 15px 15px;
        text-align: center;
    }
    
    /* Improve styling for service elements */
    .service-id {
        display: inline-block;
        padding: 4px 8px;
        border-radius: 0;
        background-color: transparent;
        font-size: 0.85rem;
        margin-right: 10px;
        min-width: 30px;
        text-align: center;
        border: 1px solid var(--highlight);
        color: var(--highlight);
    }
    
    .service-name {
        font-size: 0.95rem;
        font-weight: 600;
        line-height: 1.3;
    }
    
    .service-icon {
        margin-right: 8px;
        font-size: 1.1rem;
    }
    
    /* Price and limits styling */
    .service-price {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--highlight);
        line-height: 1.5;
        display: inline-block;
    }
    .service-price, .service-limits, .service-time { word-break: break-word; overflow-wrap: anywhere; }
    
    .service-limits {
        display: inline-block;
        padding: 4px 8px;
        border-radius: 0;
        background-color: rgba(255, 255, 255, 0.05);
        font-size: 0.85rem;
        color: var(--text-secondary);
        font-family: 'Courier New', monospace;
    }
    
    /* Service time styling if present */
    .service-time {
        font-size: 0.9rem;
        color: var(--text-secondary);
        display: block;
        padding-top: 5px;
    }
    
    /* Button styling */
    .details-button {
        width: 100%;
        padding: 10px 15px;
        font-weight: 500;
        font-size: 0.9rem;
        display: flex;
        justify-content: center;
        align-items: center;
        background: transparent;
        border-radius: 0;
        transition: none;
    }
    
    .details-button:hover, 
    .details-button:active {
        background: var(--highlight);
        color: #000;
    }
    
    .details-button i {
        margin-right: 8px;
    }
    
    /* Labels for mobile */
    .service-price::before {
        content: "Price: ";
        font-weight: normal;
        color: var(--text-secondary);
        font-size: 0.9rem;
    }
    
    .service-time::before {
        content: "Avg Time: ";
        font-weight: normal;
        color: var(--text-secondary);
    }
    
    /* Hide original limits label in desktop view */
    .service-limits::before {
        content: none;
    }
    
    /* Add min-max label in mobile view */
    .service-limits::before {
        content: "min-max: ";
        font-weight: normal;
        color: var(--text-secondary);
        font-size: 0.9rem;
    }

    /* Prevent content overflow on narrow screens */
    .service-price, .service-limits, .service-time {
        word-break: break-word;
        overflow-wrap: anywhere;
    }
    
    /* Improved category headers */
    .category-header {
        padding: 12px 15px;
        background: rgba(252, 238, 10, 0.05);
        position: sticky;
        top: 0;
        z-index: 10;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
    
    .category-icon {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    
    /* Modal improvements for mobile */
    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    /* Fix currency dropdown for mobile */
    .currency-dropdown-menu {
        max-height: 60vh;
        overflow:visible;
        z-index: 100000;
    }
    
    /* Small mobile devices */
    @media (max-width: 576px) {
        .service-row td:nth-child(1),
        .service-row td:nth-child(2) {
            padding: 10px 12px;
        }
        
        .service-row td:nth-child(3),
        .service-row td:nth-child(4) {
            padding: 8px 12px;
        }
        
        .service-row td:last-child {
            padding: 8px 12px 12px;
        }
        
        .service-id {
            font-size: 0.8rem;
            padding: 3px 6px;
        }
        
        .service-name {
            font-size: 0.9rem;
        }
        
        .service-price {
            font-size: 1rem;
        }
        
        .details-button {
            padding: 8px 12px;
        }
        
        .category-header {
            padding: 10px 12px;
        }
        
        .category-title {
            font-size: 1rem;
        }
        
        .category-icon {
            width: 32px;
            height: 32px;
            font-size: 1.1rem;
        }
    }
}
