
button.button.button-dark {
    font-family: inherit;
    font-family: Montserrat;
    text-transform: uppercase !important;
    letter-spacing: 0;
    font-weight: 800;
    color: #fff;
    background: #000;
    padding: 16px 23px!important;
    cursor: pointer;
}
.vcs-login-form, .vcs-registration-form, .vcs-waiting-list, .vcs-member-account, .vcs-application-form {
        max-width: 500px;
        margin: 20px 0;
        margin: auto;
        padding: 2em;
        background: #fafafa;
        border-radius: 20px;
        border: 1px solid #eee;
    margin-bottom: 2em;
    margin-top: 2em;
    }
.vcs-login-form p, .vcs-registration-form p, .vcs-waiting-list p, .vcs-application-form p {
    margin-bottom: 0;
    padding-bottom: 10px;
}
    .vcs-login-form label, .vcs-registration-form label, .vcs-waiting-list label, .vcs-application-form label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        font-family: 'Montserrat', sans-serif;
    }
    .vcs-login-form input, .vcs-registration-form input, .vcs-registration-form textarea, .vcs-registration-form select, .vcs-waiting-list input, .vcs-application-form input, .vcs-application-form textarea, .vcs-application-form select {
        width: 100%;
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }
    .vcs-login-form input[type="submit"], .vcs-registration_form input[type="submit"], .vcs-waiting-list input[type="submit"], .vcs-application-form input[type="submit"] {
        background: #fcba16!important;
        color: #000;
        cursor: pointer;
        width: 100%;
        padding: 10px 20px;
    }
    .error { color: red; margin: 10px 0; }
    .success { color: green; margin: 10px 0; }
    .notice { background: #f9f9f9; padding: 10px; border-left: 4px solid #0073aa; margin: 10px 0; }

    /* Profile Page Styles */
    .vcs-profile-container {
        display: flex;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .vcs-profile-sidebar {
        flex: 0 0 280px;
        background: #f8f9fa;
        border-radius: 8px;
        padding: 20px;
        height: fit-content;
    }

    .vcs-profile-content {
        flex: 1;
        background: white;
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .vcs-profile-user-info {
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e0e0e0;
    }

    .vcs-profile-avatar {
        margin-bottom: 15px;
    }

    .membership-avatar img,.vcs-profile-avatar img {
        border-radius: 50%;
        border: 3px solid #ddd;
    width: 150px;
    height: 150px;
    }

    .vcs-profile-user-info h3 {
        margin: 0 0 5px 0;
        color: #333;
    }

    .vcs-profile-email {
        color: #666;
        font-size: 0.9em;
        margin: 0;
        padding:0;
    }

    .vcs-status-badge {
        display: inline-block;
        padding: 4px 8px;
        border-radius: 4px;
        color: white;
        font-size: 0.8em;
        font-weight: bold;
        text-transform: uppercase;
    }

    .vcs-profile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .vcs-profile-nav li {
        margin-bottom: 2px;
        list-style:none;
    }

    .vcs-profile-nav a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 15px;
        text-decoration: none;
        color: #555;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .vcs-profile-nav a:hover {
        background: #e9ecef;
        color: #333;
    }

    .vcs-profile-nav li.active a {
        background: #fcba16!important;
        color: #000;
        font-weight:600;
        border-radius: 30px;
        font-family: 'Montserrat';
    }

    .vcs-profile-section {
        margin-bottom: 30px;
    }

    .vcs-profile-section h2 {
        margin: 0 0 20px 0;
        color: #333;
        border-bottom: 2px solid #fcba16!important;
        padding-bottom: 10px;
    }

    .vcs-profile-section h3 {
        margin: 0 0 15px 0;
        color: #555;
    }

    .vcs-profile-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
    }

    .vcs-profile-table td {
        padding: 10px;
        border-bottom: 1px solid #eee;
        vertical-align: top;
    }

    .vcs-profile-table td:first-child {
        width: 30%;
        font-weight: bold;
        color: #555;
    }

    .vcs-profile-answers {
        display: grid;
        gap: 20px;
    }

    .vcs-filters-readonly {
    display: grid;
    gap: 20px;
}
.vcs-profile-avatar img {
    width: 150px;
    height: 150px!important;
}
    .vcs-answer-item,.vcs-filter-group-readonly {
        background: #f8f9fa;
        padding: 15px;
        border-left: 4px solid #fcba16!important;
    }

    .vcs-answer-item strong, .vcs-filter-group-readonly strong {
        display: block;
        margin-bottom: 8px;
        color: #333;
    }

    .vcs-answer-item p, .vcs-filter-group-readonly p {
        margin: 0;
        color: #666;
    }

    .vcs-filter-group {
        margin-bottom: 25px;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 5px;
    }

    .vcs-filter-group h4 {
        margin: 0 0 15px 0;
        color: #333;
        border-bottom: 1px solid #ddd;
        padding-bottom: 8px;
    }

    .vcs-filter-options {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
    }

    .vcs-filter-option {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px;
        background: white;
        border-radius: 4px;
        border: 1px solid #ddd;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .vcs-filter-option:hover {
        background: #f0f0f0;
        border-color: #fcba16!important;
    }
.vcs-login-form h3, .vcs-registration-form h3, .vcs-waiting-list h3, .vcs-member-account h3, .vcs-application-form h3 {
    font-size: 1.5em;
    line-height: 1;
    text-align: center;
    margin-bottom: 1em;
}
    .vcs-filter-option input[type="checkbox"] {
        margin: 0;
        width: auto;
    }

    .vcs-filter-option input[type="radio"] {
        margin: 0;
        width: auto;
    }

    .filter-option-label {
        display: block;
        margin-bottom: 12px;
        padding: 10px;
        background: white;
        border: 1px solid #ddd;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .filter-option-label:hover {
        background: #f0f0f0;
        border-color: #fcba16;
    }

    .filter-option-label input[type="checkbox"],
    .filter-option-label input[type="radio"] {
        margin-right: 8px;
        width: auto;
    }

    .filter-option-text {
        font-weight: normal;
        color:#000;
    }
h4 {
    font-family: Montserrat!important;
    font-weight: bold!important;
}
    .filter-description {
        margin-left: 5px;
        cursor: help;
        opacity: 0.7;
    }

    /* New styles for radio button options */
    .vcs-radio-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .vcs-radio-option {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        background: #f8f9fa;
        border: 2px solid #e9ecef;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-bottom: 8px;
    }

    .vcs-radio-option:hover {
        background: #e9ecef;
        border-color: #fcba16;
    }

    .vcs-radio-option input[type="radio"] {
        margin-right: 12px;
        cursor: pointer;
        width: auto;
    }

    .vcs-radio-option.selected {
        background: #fcba16;
        border-color: #e0a800;
        color: #000;
        font-weight: 600;
    }
.vcs-radio-option.selected span {
    color: #000;
}
    .vcs-radio-option.selected:hover {
        background: #e0a800;
    }

    /* Ensure radio groups in registration form work properly */
    .filter-options .vcs-radio-group .vcs-radio-option {
        margin-bottom: 8px;
    }


    /* Matches Section Styles */
.vcs-matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.vcs-match-card {
    background: #fff;
    border: 2px solid #e9ecef;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.vcs-match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fcba16, #e0a800);
}

.vcs-match-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    border-color: #fcba16;
}

.vcs-match-avatar {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.vcs-match-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #fcba16;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vcs-match-card:hover .vcs-match-avatar img {
    transform: scale(1.05);
}

.vcs-match-avatar::after {
    content: '💕';
    position: absolute;
    top: -5px;
    right: -5px;
    background: #fcba16;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.vcs-match-info h4 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 1.1em;
    font-weight: 600;
}

.vcs-match-email {
    color: #666;
    font-size: 0.9em;
    margin: 0 0 8px 0;
    word-break: break-word;
}

.vcs-match-date {
    color: #888;
    font-size: 0.85em;
    margin: 0 0 15px 0;
    font-style: italic;
}

.vcs-view-profile {
    display: inline-block;
    background: #fcba16;
    color: #000;
    text-decoration: none;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border: 2px solid #fcba16;

    border-radius: 30px;
    font-family: 'Montserrat';
}

.vcs-view-profile:hover {
    background: #000;
    color: #fcba16;
    border-color: #000;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Empty state styling */
.vcs-empty-state {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px dashed #dee2e6;
    margin-top: 20px;
}

.vcs-empty-state p {
    color: #6c757d;
    font-size: 1.1em;
    margin: 0;
    line-height: 1.6;
}

.vcs-empty-state a {
    color: #fcba16;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.vcs-empty-state a:hover {
    border-bottom-color: #fcba16;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vcs-matches-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .vcs-match-card {
        padding: 15px;
    }

    .vcs-match-avatar img {
        width: 70px;
        height: 70px;
    }

    .vcs-match-avatar::after {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .vcs-match-card {
        padding: 12px;
    }

    .vcs-match-info h4 {
        font-size: 1em;
    }

    .vcs-view-profile {
        padding: 6px 12px;
        font-size: 0.85em;
    }
}


/* Messages Section Styles */
.vcs-messages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.vcs-message-card {
    background: #fff;
    border: 1px solid #e9ecef;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.vcs-message-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fcba16, #e0a800);
}

.vcs-message-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border-color: #fcba16;
    transform: translateY(-1px);
}

.vcs-message-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.vcs-message-sender {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

.vcs-message-sender img {
    border-radius: 50%;
    border: 2px solid #fcba16;
    object-fit: cover;
    flex-shrink: 0;
}

.vcs-sender-info {
    flex: 1;
    min-width: 0; /* Prevent overflow */
}

.vcs-sender-info h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.1em;
    font-weight: 600;
}

.vcs-sender-email {
    color: #666;
    font-size: 0.9em;
    margin: 0 0 5px 0;
    word-break: break-word;
}

.vcs-message-date {
    color: #888;
    font-size: 0.85em;
    margin: 0;
    font-style: italic;
}

.vcs-message-content {
    background: #f8f9fa;
    padding: 15px;
    border-left: 4px solid #fcba16;
}

.vcs-likes-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.vcs-tab {
    padding: 12px 20px;
    text-decoration: none;
    color: #666;
    border: none;
    background: transparent;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.vcs-tab:hover {
    color: #333;
    text-decoration: none;
}

.vcs-tab.active {
    color: #fcba16;
    border-bottom-color: #fcba16;
    font-weight: 600;
}

.vcs-likes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.vcs-like-card {
    background: #fff;
    border: 2px solid #e9ecef;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.vcs-like-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fcba16, #e0a800);
}

.vcs-like-card.mutual::before {
    background: linear-gradient(90deg, #fcba16, #e0a800);
}

.vcs-like-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    border-color: #fcba16;
}

.vcs-like-avatar {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.vcs-like-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #fcba16;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vcs-like-card.mutual .vcs-like-avatar img {
    border-color: #fcba16;
}

.vcs-like-card:hover .vcs-like-avatar img {
    transform: scale(1.05);
}

.vcs-like-avatar::after {
    content: '👍';
    position: absolute;
    top: -5px;
    right: -5px;
    background: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    border: 2px solid #fcba16;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.vcs-like-card.mutual .vcs-like-avatar::after {
    content:  '💕';
    background: #fcba16;
}

.vcs-mutual-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #fcba16;
    color: white;
    font-size: 0.75em;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.vcs-like-info h5 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 1.05em;
    font-weight: 600;
}

.vcs-like-date {
    color: #888;
    font-size: 0.85em;
    margin: 0 0 15px 0;
    font-style: italic;
}

.vcs-like-info .vcs-view-profile {
    display: inline-block;
    background: #fcba16;
    color: #000;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border: 2px solid #fcba16;border-radius: 30px; font-family: 'Montserrat';
}

.vcs-like-card.mutual .vcs-like-info .vcs-view-profile {
    background: #fcba16;
    border-color: #fcba16;
}

.vcs-like-info .vcs-view-profile:hover {
    background: #000;
    color: #fcba16;
    border-color: #000;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Ignores Section Styles */
.vcs-ignores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.vcs-ignore-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.vcs-ignore-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #c82333);
}

.vcs-ignore-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    border-color: #fcba16;
}

.vcs-ignore-avatar {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.vcs-ignore-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #dc3545;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: grayscale(20%);
}

.vcs-ignore-card:hover .vcs-ignore-avatar img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.vcs-ignore-avatar::after {
    content: '🚫';
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.vcs-ignore-info h5 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 1.05em;
    font-weight: 600;
}

.vcs-ignore-email {
    color: #666;
    font-size: 0.9em;
    margin: 0 0 8px 0;
    word-break: break-word;
}

.vcs-ignore-date {
    color: #888;
    font-size: 0.85em;
    margin: 0 0 15px 0;
    font-style: italic;
}

.vcs-unignore-btn {
    background: #28a745;
    color: #fff;
    border: 2px solid #28a745;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.vcs-unignore-btn:hover {
    background: #000;
    color: #fcba16;
    border-color: #000;
    transform: translateY(-1px);
}

/* Responsive adjustments for likes and ignores */
@media (max-width: 768px) {
    .vcs-likes-grid,
    .vcs-ignores-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .vcs-like-card,
    .vcs-ignore-card {
        padding: 15px;
    }

    .vcs-like-avatar img,
    .vcs-ignore-avatar img {
        width: 60px;
        height: 60px;
    }

    .vcs-like-avatar::after,
    .vcs-ignore-avatar::after {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }

    .vcs-likes-tabs {
        flex-direction: column;
        gap: 5px;
    }

    .vcs-tab {
        padding: 10px 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .vcs-like-card,
    .vcs-ignore-card {
        padding: 12px;
    }

    .vcs-like-info h5,
    .vcs-ignore-info h5 {
        font-size: 1em;
    }

    .vcs-like-info .vcs-view-profile,
    .vcs-unignore-btn {
        padding: 6px 12px;
        font-size: 0.85em;
    }
}



.vcs-message-content p {
    margin: 0;
    color: #444;
    line-height: 1.6;
    word-wrap: break-word;
}

.vcs-message-content p:not(:last-child) {
    margin-bottom: 10px;
}

/* View Profile button in messages */
.vcs-message-header .vcs-view-profile {
    flex-shrink: 0;
    margin-left: 15px;
    align-self: flex-start;
}

/* Pagination Styles for Messages */
.vcs-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding: 20px 0;
}

.vcs-page-link,
.vcs-page-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease;
}

.vcs-page-link:hover {
    background: #fcba16;
    border-color: #fcba16;
    color: #000;
    text-decoration: none;
}

.vcs-page-current {
    background: #fcba16;
    border-color: #fcba16;
    color: #000;
    font-weight: 600;
}

/* Success message for messages */
.vcs-success-message {
    background: #d4edda;
    color: #155724;
    padding: 12px 16px;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Message status indicators */
.vcs-message-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8em;
    color: #666;
    margin-top: 5px;
}

.vcs-message-status.unread {
    color: #fcba16;
    font-weight: 600;
}

.vcs-message-status.unread::before {
    content: '●';
    color: #fcba16;
    font-size: 1.2em;
}

.vcs-message-status.read::before {
    content: '✓';
    color: #28a745;
}

/* Long message handling */
.vcs-message-content.long-message {
    max-height: 200px;
    overflow: hidden;
    position: relative;
}

.vcs-message-content.long-message::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, #f8f9fa);
}

.vcs-message-expand {
    background: none;
    border: none;
    color: #fcba16;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.vcs-message-expand:hover {
    color: #e0a800;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vcs-message-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .vcs-message-sender {
        gap: 12px;
    }

    .vcs-message-header .vcs-view-profile {
        margin-left: 0;
        align-self: stretch;
        text-align: center;
    }

    .vcs-sender-info h4 {
        font-size: 1em;
    }

    .vcs-pagination {
        gap: 5px;
    }

    .vcs-page-link,
    .vcs-page-current {
        min-width: 35px;
        height: 35px;
        padding: 6px 10px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .vcs-message-card {
        padding: 15px;
    }

    .vcs-message-sender {
        gap: 10px;
    }

    .vcs-message-content {
        padding: 12px;
    }

    .vcs-sender-info h4 {
        font-size: 0.95em;
    }

    .vcs-sender-email,
    .vcs-message-date {
        font-size: 0.8em;
    }
}


/* =============================================================================
   VCS MEMBER PROFILE PAGE — Social Media Style (Feature 4)
   ============================================================================= */

.vcs-member-profile-page {
    max-width: 900px;
    margin: 0 auto;
    font-family: inherit;
}

.vcs-mp-back {
    margin-bottom: 20px;
}
.vcs-mp-back a {
    color: #fcba16;
    font-weight: 600;
    text-decoration: none;
}
.vcs-mp-back a:hover { text-decoration: underline; }

.vcs-mp-notice {
    text-align: center;
    padding: 40px;
    color: #666;
    background: #f8f9fa;
    border-radius: 8px;
}

/* --- Employer Profile --- */
.vcs-emp-profile {}

.vcs-emp-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 24px;
}

.vcs-emp-logo {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #fcba16;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vcs-emp-logo img { width: 100%; height: 100%; object-fit: cover; }
.vcs-emp-logo-placeholder { font-size: 2.5em; color: #ccc; }

.vcs-emp-header-info { flex: 1; }
.vcs-emp-header-info h1 { margin: 0 0 8px; font-size: 1.8em; color: #222; }
.vcs-emp-location { color: #666; margin: 4px 0; }
.vcs-emp-tagline  { color: #444; font-style: italic; margin: 8px 0; }

.vcs-emp-rating-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    color: #555;
}

/* Tabs */
.vcs-emp-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.vcs-emp-tab {
    padding: 10px 22px;
    text-decoration: none;
    color: #555;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.vcs-emp-tab:hover { color: #fcba16; }
.vcs-emp-tab.active {
    color: #fcba16;
    border-bottom-color: #fcba16;
}

.vcs-emp-badge {
    background: #fcba16;
    color: #000;
    font-size: 0.75em;
    padding: 2px 7px;
    border-radius: 12px;
    font-weight: 700;
}

.vcs-emp-tab-content {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* Jobs table */
.vcs-jobs-table-wrap { overflow-x: auto; }
.vcs-jobs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
.vcs-jobs-table th {
    background: #f8f9fa;
    padding: 10px 14px;
    text-align: left;
    border-bottom: 2px solid #e0e0e0;
    font-weight: 600;
    color: #333;
}
.vcs-jobs-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
}
.vcs-jobs-table tr:last-child td { border-bottom: none; }
.vcs-jobs-table tr:hover td { background: #fafafa; }

.vcs-btn-sm {
    display: inline-block;
    padding: 5px 14px;
    background: #fcba16;
    color: #000;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85em;
    transition: background 0.2s;
}
.vcs-btn-sm:hover { background: #e0a800; color: #000; }

.vcs-job-closed-badge {
    display: inline-block;
    padding: 3px 10px;
    background: #e0e0e0;
    color: #666;
    border-radius: 4px;
    font-size: 0.85em;
}

/* --- Applicant Profile --- */
.vcs-app-profile {}

.vcs-app-header {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 24px;
}

.vcs-app-avatar {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fcba16;
    background: #f0f0f0;
}
.vcs-app-avatar img,
.vcs-app-avatar-img { width: 100%; height: 100%; object-fit: cover; }

.vcs-app-header-info { flex: 1; }
.vcs-app-header-info h1 { margin: 0 0 8px; font-size: 1.8em; color: #222; }
.vcs-app-location { color: #666; margin: 4px 0; }
.vcs-app-last-seen { color: #888; font-size: 0.9em; margin: 4px 0; }
.vcs-app-rating-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    color: #555;
}

/* Shared: sections, fields, tags */
.vcs-mp-section {
    background: #fff;
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.vcs-mp-section h3 {
    margin: 0 0 18px;
    font-size: 1.15em;
    color: #222;
    border-bottom: 2px solid #fcba16;
    padding-bottom: 8px;
}

.vcs-mp-field {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 10px 20px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}
.vcs-mp-field:last-child { border-bottom: none; }

.vcs-mp-label {
    font-weight: 600;
    color: #555;
    font-size: 0.9em;
}
.vcs-mp-value { color: #333; }

.vcs-mp-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.vcs-mp-tag {
    background: #fcba16;
    color: #000;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}

.vcs-mp-empty {
    color: #888;
    font-style: italic;
    padding: 20px 0;
    text-align: center;
}

/* Rating / Pawprints */
.vcs-rating-display {
    text-align: center;
    padding: 20px 0;
}
.vcs-pawprints {
    display: inline-flex;
    gap: 4px;
    font-size: 1.6em;
    line-height: 1;
}
.vcs-pawprint.empty { opacity: 0.25; }
.vcs-rating-score { font-size: 1.4em; font-weight: 700; color: #333; margin: 8px 0 4px; }
.vcs-rating-count { color: #888; font-size: 0.9em; margin: 0; }

/* Responsive */
@media (max-width: 640px) {
    .vcs-emp-header,
    .vcs-app-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .vcs-emp-header-info h1,
    .vcs-app-header-info h1 { font-size: 1.4em; }
    .vcs-mp-field { grid-template-columns: 1fr; gap: 4px; }
    .vcs-emp-tabs { gap: 0; }
    .vcs-emp-tab { padding: 8px 12px; font-size: 0.9em; }
}


/* ==========================================================================
   Coaching & Recruiting CTA Cards + Modals
   ========================================================================== */

.vcs-cta-card {
    margin: 20px 0 0;
    border-radius: 10px;
    padding: 18px 22px;
    background: linear-gradient(135deg, #fffbf0 0%, #fff9e6 100%);
    border: 1.5px solid #fcba16;
    box-shadow: 0 2px 8px rgba(252, 186, 22, 0.15);
}

.vcs-cta-card-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.vcs-cta-card-icon {
    font-size: 2em;
    flex-shrink: 0;
}

.vcs-cta-card-text {
    flex: 1;
    min-width: 180px;
}

.vcs-cta-card-text strong {
    display: block;
    font-size: 1.05em;
    margin-bottom: 4px;
}

.vcs-cta-card-text p {
    margin: 0;
    font-size: 0.88em;
    color: #555;
}

.vcs-cta-card-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Modal overlay */
.vcs-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 100000;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.vcs-modal-box {
    background: #fff;
    border-radius: 12px;
    padding: 28px 32px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    max-height: 90vh;
    overflow-y: auto;
}

.vcs-modal-x {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 0;
}
.vcs-modal-x:hover { color: #000; }

.vcs-cta-modal-price {
    font-size: 1.1em;
    color: #333;
    background: #fffbf0;
    border: 1px solid #fcba16;
    border-radius: 6px;
    padding: 8px 14px;
    margin: 8px 0 16px;
    display: inline-block;
}

.vcs-cta-card-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 16px 0 12px;
}

.vcs-cta-modal-card-label {
    margin: 0 0 10px;
    font-size: 0.95em;
}

.vcs-cta-expiry-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.vcs-form-row {
    margin-bottom: 12px;
}

.vcs-form-row label {
    display: block;
    font-size: 0.88em;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.vcs-form-row-inline {
    flex: 1;
    min-width: 80px;
    margin-bottom: 0;
}

.vcs-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.92em;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color 0.2s;
}
.vcs-input:focus { border-color: #fcba16; outline: none; box-shadow: 0 0 0 2px rgba(252,186,22,0.2); }

.vcs-input-sm { width: 100%; }

.vcs-textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.92em;
    box-sizing: border-box;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s;
}
.vcs-textarea:focus { border-color: #fcba16; outline: none; box-shadow: 0 0 0 2px rgba(252,186,22,0.2); }

.vcs-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 18px;
}

.vcs-modal-status {
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 0.9em;
    margin-top: 12px;
}

.vcs-modal-error {
    background: #fdf2f2;
    border: 1px solid #f5c6cb;
    color: #c0392b;
}

.vcs-modal-success {
    background: #f0faf0;
    border: 1px solid #b8e0b8;
    color: #27ae60;
}

.vcs-debug-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 0.85em;
    color: #856404;
    margin: 10px 0;
}

body.vcs-modal-open { overflow: hidden; }

@media (max-width: 600px) {
    .vcs-cta-card-inner { flex-direction: column; align-items: flex-start; }
    .vcs-cta-card-btn { width: 100%; }
    .vcs-modal-box { padding: 20px 18px; }
    .vcs-cta-expiry-row { flex-direction: column; gap: 8px; }
}
