* {
    font-family: "Inter", sans-serif;
}

body {
    background-color: #1a1a1a;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Header Styles */
.header-top {
    background-color: #0d1117;
    border-bottom: 1px solid #333;
    padding: 1rem 0;
}

.navbar-custom {
    background-color: #0d1117;
    padding: 1rem 0;
}

.brand-logo {
    color: #f39c12;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    margin-right: 10px;
}

.brand-logo:hover {
    color: #f39c12;
}

.nav-link-custom {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link-custom:hover {
    background-color: #f39c12;
    color: #000;
}

.nav-link-custom.active {
    background-color: #f39c12;
    color: #000;
}

.btn-sign-in {
    background-color: transparent;
    border: 1px solid #f39c12;
    color: #f39c12;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-sign-in:hover {
    background-color: #f39c12;
    color: #000;
}

/* Search Section */
.search-section {
    background-color: #333;
    padding: 15px 0;
    border-bottom: 2px solid #444;
}

.search-form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.form-control-custom {
    background-color: #0d1117;
    border: 1px solid #555;
    color: #ffffff;
    border-radius: 5px;
    padding: 8px 12px;
    height: 40px;
    font-size: 14px;
}

.form-control-custom:focus {
    background-color: #1a1a1a;
    border-color: #f39c12;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
}

.form-control-custom::placeholder {
    color: #ccc;
}

.form-select-custom {
    background-color: #0d1117;
    border: 1px solid #555;
    color: #ffffff;
    border-radius: 5px;
    padding: 8px 12px;
    height: 40px;
    font-size: 14px;
}

.form-select-custom:focus {
    background-color: #1a1a1a;
    border-color: #f39c12;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
}

.btn-search {
    background-color: #f39c12;
    border: none;
    color: #000;
    padding: 8px 16px;
    border-radius: 5px;
    height: 40px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-search:hover {
    background-color: #e67e22;
    color: #000;
}

.btn-add {
    background-color: #0d1117;
    border: 1px solid #555;
    color: #f39c12;
    border-radius: 5px;
    height: 40px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-add:hover {
    background-color: #f39c12;
    color: #000;
}

/* Main Content */
.main-content {
    background-color: #40694c;
    min-height: 600px;
    padding: 2rem 0;
}

/* Authentication page specific styles */
.main-content-auth {
    background-color: #40694c;
    min-height: calc(100vh - 80px);
    padding: 2rem 0;
}

/* Back Button */
.back-btn {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.back-btn:hover {
    color: #e67e22;
}

/* Login Section */
.login-section {
    padding-right: 3rem;
    border-right: 1px solid #333;
}

.login-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.form-label-custom {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control-custom-dark {
    background-color: #21262d;
    border: 1px solid #333;
    color: #ffffff;
    border-radius: 5px;
    padding: 0.75rem;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.form-control-custom-dark:focus {
    background-color: #21262d;
    border-color: #f39c12;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
}

.form-control-custom-dark::placeholder {
    color: #888;
}

.form-control-custom-light {
    background-color: #ffffff;
    border: 1px solid #ddd;
    color: #333;
    border-radius: 5px;
    padding: 0.75rem;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-control-custom-light:focus {
    background-color: #ffffff;
    border-color: #f39c12;
    color: #333;
    box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
}

.form-control-custom-light::placeholder {
    color: #999;
}

.form-check-custom {
    margin-bottom: 1.5rem;
}

.form-check-input-custom {
    background-color: #21262d;
    border: 1px solid #333;
    margin-right: 0.5rem;
}

.form-check-input-custom:checked {
    background-color: #f39c12;
    border-color: #f39c12;
}

.form-check-input-custom-transparent {
    background-color: transparent;
    border: 2px solid #f39c12;
    margin-right: 0.5rem;
    width: 18px;
    height: 18px;
}

.form-check-input-custom-transparent:checked {
    background-color: #f39c12;
    border-color: #f39c12;
}

.form-check-label-custom {
    color: #ffffff;
    font-size: 0.9rem;
}

.form-check-label-custom a {
    color: #f39c12;
    text-decoration: none;
}

.form-check-label-custom a:hover {
    color: #e67e22;
    text-decoration: underline;
}

.btn-signin {
    background-color: #f39c12;
    border: none;
    color: #000;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.btn-signin:hover {
    background-color: #e67e22;
    color: #000;
}

.btn-register {
    background-color: #f39c12;
    border: none;
    color: #000;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.btn-register:hover {
    background-color: #e67e22;
    color: #000;
}

.btn-register-full {
    width: 100%;
    margin-bottom: 2rem;
}

.login-links {
    background-color: #21262d;
    border-radius: 5px;
    padding: 1.5rem;
}

.login-link {
    color: #f39c12;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.login-link:last-child {
    border-bottom: none;
}

.login-link:hover {
    color: #e67e22;
    padding-left: 0.5rem;
}

.login-link-section {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

/* Registration Section */
.registration-section {
    padding-left: 3rem;
    /* border-left: 1px solid #333; */
}

.registration-title {
    color: #ffffff;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.registration-title-large {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.registration-subtitle {
    color: #ccc;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.registration-card {
    background-color: #21262d;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.user-type-card {
    background-color: #21262d;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.user-type-card:hover {
    border-color: #f39c12;
    transform: translateY(-3px);
}

.user-type-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.user-type-icon {
    background-color: #f39c12;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}
.user-icon {
    background-color: #f39c12;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: #000;
}

.user-type-description {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

/* Footer Styles */
.footer {
    background-color: #0d1117;
    border-top: 1px solid #333;
    padding: 2rem 0;
    margin-top: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #e67e22;
}

.footer-text {
    color: #888;
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.footer-copyright {
    color: #666;
    font-size: 0.8rem;
    text-align: center;
}

/* Responsive adjustments for auth pages */
@media (max-width: 768px) {
    .login-section {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .registration-section {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #333;
        padding-top: 3rem;
    }

    .footer-links {
        gap: 1rem;
    }
}

.page-title {
    color: #ffffff;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.city-info {
    color: #888;
    margin-bottom: 2rem;
}

/* Profile Cards */
.profile-card {
    background-color: #21262d;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.2);
}

.profile-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.profile-info {
    padding: 1.5rem;
}

.profile-name {
    color: #f39c12;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.profile-details {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.profile-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-contact {
    background-color: #f39c12;
    border: none;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    display: inline-block;
}

.btn-contact:hover {
    background-color: #e67e22;
    color: #000;
}

/* Reviews Section */
.reviews-section {
    background-color: #161b22;
    padding: 1rem;
    border-top: 1px solid #333;
    margin-top: 1rem;
}

.review-item {
    background-color: #0d1117;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    border-left: 3px solid #f39c12;
}

.review-author {
    color: #f39c12;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.review-text {
    color: #ccc;
    font-size: 0.9rem;
}

.rating-stars {
    color: #f39c12;
    margin-bottom: 0.5rem;
}

/* Sidebar */
.sidebar {
    background-color: #161b22;
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
}

.sidebar-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.whats-new-item {
    background-color: #21262d;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    border-left: 3px solid #f39c12;
}

.whats-new-item .profile-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 1rem;
}

.whats-new-text {
    color: #ccc;
    font-size: 0.9rem;
}

.whats-new-name {
    color: #f39c12;
    font-weight: 600;
}

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

    .form-control-custom,
    .form-select-custom,
    .btn-search,
    .btn-add {
        height: 38px;
        font-size: 13px;
        margin-bottom: 10px;
    }

    .profile-card {
        margin-bottom: 1rem;
    }

    .sidebar {
        margin-top: 2rem;
    }

    .row.g-2 {
        --bs-gutter-x: 0.75rem;
    }
}

@media (max-width: 576px) {
    .search-form {
        padding: 0.5rem;
    }

    .form-control-custom,
    .form-select-custom {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .btn-search {
        font-size: 12px;
        padding: 8px 12px;
    }

    .row.g-2 {
        --bs-gutter-x: 0.5rem;
    }
}

/* Select2 Dark Theme Styling */
.select2-container--bootstrap-5 .select2-selection {
    background-color: #0d1117 !important;
    border: 1px solid #555 !important;
    color: #ffffff !important;
    min-height: 40px !important;
}

.select2-container--bootstrap-5
    .select2-selection--single
    .select2-selection__rendered {
    color: #ffffff !important;
    line-height: 38px !important;
}

.select2-container--bootstrap-5
    .select2-selection--single
    .select2-selection__placeholder {
    color: #ccc !important;
}

/* Multiple select styling */
.select2-container--bootstrap-5 .select2-selection--multiple {
    background-color: #0d1117 !important;
    border: 1px solid #555 !important;
    min-height: 40px !important;
    display: flex !important;
    align-items: flex-start !important;
    padding: 2px !important;
}

.select2-container--bootstrap-5
    .select2-selection--multiple
    .select2-selection__choice {
    background-color: #f39c12 !important;
    border: 1px solid #e67e22 !important;
    color: #000000 !important;
    font-size: 11px !important;
    margin: 2px 2px 2px 0 !important;
    padding: 2px 6px !important;
    border-radius: 3px !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    max-width: none !important;
}

.select2-container--bootstrap-5
    .select2-selection--multiple
    .select2-selection__choice__remove {
    color: #000000 !important;
    font-weight: bold !important;
    margin-left: 4px !important;
    padding: 0 2px !important;
}

.select2-container--bootstrap-5
    .select2-selection--multiple
    .select2-selection__choice__remove:hover {
    color: #ffffff !important;
    background-color: #c0392b !important;
    border-radius: 2px !important;
}

.select2-container--bootstrap-5
    .select2-selection--multiple
    .select2-selection__placeholder {
    color: #ccc !important;
    margin: 4px !important;
}

.select2-container--bootstrap-5
    .select2-selection--multiple
    .select2-search__field {
    color: #ffffff !important;
    background-color: transparent !important;
    border: none !important;
    margin: 2px !important;
    min-width: 50px !important;
}

.select2-container--bootstrap-5
    .select2-selection--multiple
    .select2-selection__rendered {
    padding: 2px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.select2-dropdown {
    background-color: #21262d !important;
    border: 1px solid #333 !important;
}

.select2-container--bootstrap-5 .select2-results__option {
    color: #ffffff !important;
    background-color: #21262d !important;
}

.select2-container--bootstrap-5 .select2-results__option--highlighted {
    background-color: #f39c12 !important;
    color: #000000 !important;
}

.select2-container--bootstrap-5 .select2-results__option--selected {
    background-color: #238636 !important;
    color: #ffffff !important;
}

.select2-container--bootstrap-5 .select2-search__field {
    background-color: #0d1117 !important;
    border: 1px solid #555 !important;
    color: #ffffff !important;
}

.select2-container--bootstrap-5 .select2-selection__clear {
    color: #f39c12 !important;
}

/* Additional styling for better UX */
.select2-container--bootstrap-5
    .select2-selection--multiple
    .select2-selection__choice {
    border-radius: 3px !important;
    font-weight: 500 !important;
}

.select2-container .select2-selection--multiple {
    overflow: hidden !important;
}

.select2-container--bootstrap-5
    .select2-selection--multiple
    .select2-selection__rendered {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 2px !important;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .select2-container--bootstrap-5
        .select2-selection--multiple
        .select2-selection__choice {
        font-size: 11px !important;
        padding: 1px 4px !important;
        margin: 1px !important;
    }
}

/* Advertiser Registration Specific Styles */
.form-hint {
    color: #e67e22;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    font-style: italic;
}

/* Account Type Selection */
.account-type-section {
    margin-bottom: 1.5rem;
}

.account-type-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.account-type-option {
    flex: 1;
    background-color: transparent;
    border: 2px solid #333;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.account-type-option:hover {
    border-color: #f39c12;
    color: #ffffff;
}

.account-type-option.selected {
    border-color: #f39c12;
    background-color: #f39c12;
    color: #000;
}

.help-section {
    background-color: #21262d;
    border-radius: 5px;
    padding: 1rem;
}

.help-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.help-link {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.help-link:hover {
    color: #e67e22;
    text-decoration: underline;
}

/* Right Side Content */
.right-section {
    padding-left: 2rem;
    border-left: 1px solid #333;
}

.right-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.escort-preview {
    background-color: #21262d;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #333;
}

.escort-header {
    background-color: #2a2f36;
    margin: -1rem -1rem 1rem -1rem;
    padding: 0.75rem 1rem;
    border-radius: 10px 10px 0 0;
    border-bottom: 1px solid #333;
}

.escort-category {
    background-color: #f39c12;
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.escort-title {
    color: #ffffff;
    margin: 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.escort-actions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.escort-action {
    background-color: #f39c12;
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.escort-action:hover {
    background-color: #e67e22;
    color: #000;
}

.escort-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.escort-photo {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    height: 80px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
}

.escort-contact {
    background-color: #2a2f36;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.contact-method {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-method i {
    color: #f39c12;
    margin-right: 0.5rem;
}

.pricing-info {
    background-color: #2a2f36;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.pricing-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-details {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Responsive for Advertiser Registration */
@media (max-width: 768px) {
    .registration-section {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .right-section {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #333;
        padding-top: 3rem;
    }

    .account-type-options {
        flex-direction: column;
    }
}

/* Profile Details Page Styles */
.profile-navigation {
    background-color: #2d2d2d;
    padding: 1rem 0;
    border-bottom: 1px solid #444;
}

.nav-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-link-profile {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
}

.nav-link-profile:hover {
    color: #e67e22;
}

.profile-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.profile-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    background-color: #f39c12;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background-color: #e67e22;
    color: #000;
}

.action-btn i {
    margin-right: 0.3rem;
}

.profile-container {
    background-color: #1a1a1a;
    min-height: 100vh;
    padding: 2rem 0;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.photo-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #333;
    background: linear-gradient(45deg, #f39c12, #e67e22);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
}

.photo-zoom {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: rgba(243, 156, 18, 0.9);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.8rem;
}

.profile-content {
    background-color: #2d2d2d;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid #444;
    margin-bottom: 1.5rem;
}

.profile-intro {
    margin-bottom: 1.5rem;
}

.pricing-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.pricing-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-icon {
    background-color: #666;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
}

.pricing-text {
    color: #ccc;
    font-size: 0.9rem;
}

.pricing-amount {
    color: #f39c12;
    font-weight: 600;
}

.profile-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #444;
}

.spec-label {
    color: #ccc;
    font-size: 0.9rem;
}

.spec-value {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}

.tabs-section {
    margin-bottom: 1.5rem;
}

.profile-tabs {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #444;
}

.tab-item {
    color: #ccc;
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-item.active {
    color: #f39c12;
    border-bottom-color: #f39c12;
}

.tab-item:hover {
    color: #f39c12;
}

.review-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #333;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.review-stars {
    color: #f39c12;
}

.review-author {
    color: #f39c12;
    font-weight: 600;
    font-size: 0.9rem;
}

.review-date {
    color: #888;
    font-size: 0.8rem;
}

.review-text {
    color: #ccc;
    line-height: 1.5;
    font-size: 0.9rem;
}

.report-section {
    text-align: center;
    padding: 1rem;
    color: #888;
    font-size: 0.8rem;
}

.report-link {
    color: #f39c12;
    text-decoration: none;
}

.report-link:hover {
    color: #e67e22;
}
