/* ==========================================================================
   VRA Seniors Frontend Styles
   ========================================================================== */

/* Base Container
   ========================================================================== */

.vra-signup-form,
.vra-event-status,
.vra-my-events,
.vra-user-status {
    margin: 1.5rem auto;
    padding: 1.5rem;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    max-width: 800px;
}

.vra-event-status h4,
.vra-my-events h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #1d2327;
    font-size: 1.1rem;
}

/* Events Grid
   ========================================================================== */

.vra-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem auto;
    max-width: 1200px;
}

.vra-events-grid-empty {
    padding: 2rem;
    text-align: center;
    background: #f6f7f7;
    border-radius: 8px;
    color: #646970;
}

/* Event Card
   ========================================================================== */

.vra-event-card {
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.vra-event-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.vra-event-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid #f0f0f1;
    gap: 1rem;
}

.vra-event-card__title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d2327;
    line-height: 1.3;
    flex: 1;
}

.vra-event-card__badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.vra-event-card__badge.vra-status-open {
    background: #d4edda;
    color: #155724;
}

.vra-event-card__badge.vra-status-full {
    background: #fff3cd;
    color: #856404;
}

.vra-event-card__badge.vra-status-closed {
    background: #f8d7da;
    color: #721c24;
}

.vra-event-card__badge.vra-status-unknown {
    background: #e2e3e5;
    color: #383d41;
}

.vra-event-card__body {
    padding: 1rem 1.25rem 1.25rem;
}

.vra-event-card__highlight {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: #f0f6fc;
    border-radius: 6px;
    border-left: 3px solid #2271b1;
}

.vra-event-card__highlight .dashicons {
    color: #2271b1;
    margin-top: 2px;
}

.vra-event-card__highlight-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1d2327;
}

.vra-event-card__venue {
    background: #fcf9e8;
    border-left-color: #dba617;
}

.vra-event-card__venue .dashicons {
    color: #dba617;
}

.vra-event-card__venue-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.vra-event-card__venue-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1d2327;
}

.vra-event-card__venue-address {
    font-size: 0.85rem;
    color: #646970;
    white-space: pre-line;
}

.vra-event-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #50575e;
}

.vra-event-card__meta:last-of-type {
    margin-bottom: 1rem;
}

.vra-event-card__icon {
    width: 18px;
    height: 18px;
    font-size: 18px;
    color: #2271b1;
    flex-shrink: 0;
}

/* Capacity Section
   ========================================================================== */

.vra-event-card__capacity {
    background: #f6f7f7;
    border-radius: 6px;
    padding: 0.75rem 1rem;
}

.vra-event-card__capacity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #646970;
}

.vra-event-card__capacity-count {
    font-weight: 600;
    color: #1d2327;
}

.vra-event-card__capacity-bar {
    height: 8px;
    background: #dcdcde;
    border-radius: 999px;
    overflow: hidden;
}

.vra-event-card__capacity-fill {
    height: 100%;
    border-radius: 999px;
    transition: width 0.3s ease;
}

.vra-event-card__capacity-fill.vra-capacity-normal {
    background: #00a32a;
}

.vra-event-card__capacity-fill.vra-capacity-high {
    background: #dba617;
}

.vra-event-card__capacity-fill.vra-capacity-full {
    background: #d63638;
}

.vra-event-card__spots-left {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #00a32a;
    font-weight: 500;
}

/* Waitlist Indicator
   ========================================================================== */

.vra-event-card__waitlist {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: #fff8e5;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #856404;
}

.vra-event-card__waitlist .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Status Badge (Legacy - for event_status shortcode)
   ========================================================================== */

.vra-status-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    margin: 10px 0;
}

.vra-status-badge.status-open {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.vra-status-badge.status-full {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.vra-status-badge.status-closed {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.vra-status-badge.status-cancelled {
    background: #e2e3e5;
    color: #383d41;
    border: 1px solid #d6d8db;
}

.vra-status-details {
    margin-top: 1rem;
}

.vra-status-detail {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vra-status-detail:last-child {
    border-bottom: none;
}

.vra-status-detail .vra-label {
    font-weight: 500;
    color: #646970;
}

.vra-status-detail .vra-value {
    color: #1d2327;
}

.vra-status-detail .vra-value.available {
    color: #00a32a;
    font-weight: 600;
}

/* Buttons
   ========================================================================== */

.vra-signup-btn,
.vra-cancel-btn {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background-color 0.15s ease, transform 0.1s ease;
}

.vra-signup-btn {
    background: #2271b1;
    color: #fff;
}

.vra-signup-btn:hover {
    background: #135e96;
    color: #fff;
}

.vra-cancel-btn {
    background: #d63638;
    color: #fff;
}

.vra-cancel-btn:hover {
    background: #b32d2e;
    color: #fff;
}

/* Notices
   ========================================================================== */

.vra-notice {
    padding: 1rem 1.25rem;
    background: #e7f3ff;
    border: 1px solid #b3d9ff;
    color: #004085;
    border-radius: 6px;
    margin: 1rem 0;
}

.vra-error {
    padding: 1rem 1.25rem;
    background: #fcf0f1;
    border: 1px solid #f5c6cb;
    color: #721c24;
    border-radius: 6px;
    margin: 1rem 0;
}

/* My Events List
   ========================================================================== */

.vra-events-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vra-event-item {
    padding: 0.75rem 1rem;
    background: #f6f7f7;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.vra-event-item:last-child {
    margin-bottom: 0;
}

.vra-event-item small {
    color: #646970;
    font-size: 0.85rem;
}

/* User Status
   ========================================================================== */

.vra-user-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f6f7f7;
    border-radius: 6px;
    font-weight: 500;
    color: #1d2327;
}

/* Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .vra-events-grid {
        grid-template-columns: 1fr;
    }

    .vra-event-card__header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .vra-event-card__badge {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .vra-signup-form,
    .vra-event-status,
    .vra-my-events,
    .vra-user-status,
    .vra-registration-form {
        padding: 1rem;
    }

    .vra-event-card__header,
    .vra-event-card__body {
        padding: 1rem;
    }
}

/* ==========================================================================
   Registration Form Styles (Dashboard-style)
   ========================================================================== */

.vra-register-wrap {
    max-width: 700px;
    margin: 1.5rem auto;
}

/* Card Component */
.vra-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid #dcdcde;
}

.vra-card-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafafa;
    border-radius: 8px 8px 0 0;
}

.vra-card-header h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1d2327;
}

.vra-card-body {
    padding: 20px;
}

/* Status Messages */
.vra-status-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 6px;
}

.vra-status-message .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.vra-status-message strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.vra-status-message p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.vra-status-message--success {
    background: #edfaef;
    color: #00a32a;
}

.vra-status-message--warning {
    background: #fef8e7;
    color: #996800;
}

.vra-status-message--error {
    background: #fcecec;
    color: #d63638;
}

.vra-status-message--info {
    background: #f0f6fc;
    color: #2271b1;
}

/* Form Intro */
.vra-form-intro {
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f1;
    color: #646970;
    font-size: 14px;
    line-height: 1.5;
}

/* Form Sections */
.vra-form-section {
    margin-bottom: 24px;
}

.vra-form-section:last-of-type {
    margin-bottom: 0;
}

.vra-form-section-title {
    margin: 0 0 16px;
    padding-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1d2327;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #2271b1;
}

/* Form Rows */
.vra-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {
    .vra-form-row {
        grid-template-columns: 1fr;
    }
}

/* Form Groups */
.vra-form-group {
    margin-bottom: 16px;
}

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

.vra-form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #1d2327;
}

.vra-required {
    color: #d63638;
    margin-left: 2px;
}

.vra-form-group input[type="text"],
.vra-form-group input[type="email"],
.vra-form-group input[type="tel"],
.vra-form-group input[type="password"],
.vra-form-group input[type="number"],
.vra-form-group select,
.vra-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #c3c4c7;
    border-radius: 6px;
    font-size: 14px;
    color: #2c3338;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.vra-form-group input:focus,
.vra-form-group select:focus,
.vra-form-group textarea:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

.vra-form-group--error input,
.vra-form-group--error select,
.vra-form-group--error textarea {
    border-color: #d63638;
    box-shadow: 0 0 0 1px #d63638;
}

.vra-field-error {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #d63638;
}

.vra-field-hint {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #646970;
}

/* Buttons */
.vra-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s, box-shadow 0.2s;
    line-height: 1.4;
}

.vra-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #2271b1;
}

.vra-btn-primary {
    background: #2271b1;
    color: #fff;
}

.vra-btn-primary:hover {
    background: #135e96;
    color: #fff;
}

.vra-btn-primary .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Form Actions */
.vra-form-actions {
    display: flex;
    gap: 10px;
    padding-top: 20px;
    margin-top: 24px;
    border-top: 1px solid #f0f0f1;
}

/* Notice variants */
.vra-notice--success {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.vra-notice--warning {
    background: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.vra-notice--info {
    background: #e7f3ff;
    border-color: #b3d9ff;
    color: #004085;
}

/* Member Status Display */
.vra-member-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
}

.vra-member-status--approved {
    background: #d4edda;
    color: #155724;
}

.vra-member-status--pending {
    background: #fff3cd;
    color: #856404;
}

.vra-member-status--rejected {
    background: #f8d7da;
    color: #721c24;
}

/* Captain Badge & Options
   ========================================================================== */

.vra-status-signed-up {
    color: #00a32a;
    font-weight: 600;
}

.vra-captain-badge {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.2rem 0.5rem;
    background: #dba617;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vra-captain-option {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #fcf9e8;
    border: 1px solid #dba617;
    border-radius: 6px;
}

.vra-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.vra-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.vra-checkbox-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.vra-checkbox-text strong {
    color: #1d2327;
}

.vra-checkbox-text small {
    color: #646970;
    font-size: 0.85rem;
}

.vra-status-waitlisted {
    color: #dba617;
    font-weight: 600;
}

/* Clickable Event Card Link
   ========================================================================== */

.vra-event-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.vra-event-card__link:hover {
    text-decoration: none;
    color: inherit;
}

.vra-event-card__link:focus {
    outline: 2px solid #2271b1;
    outline-offset: 2px;
}

/* Single Event View
   ========================================================================== */

.vra-single-event {
    max-width: 800px;
    margin: 1.5rem auto;
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.vra-single-event__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f1;
    gap: 1rem;
}

.vra-single-event__title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d2327;
    line-height: 1.3;
}

.vra-single-event__badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.vra-single-event__badge.vra-status-open {
    background: #d4edda;
    color: #155724;
}

.vra-single-event__badge.vra-status-full {
    background: #fff3cd;
    color: #856404;
}

.vra-single-event__badge.vra-status-closed {
    background: #f8d7da;
    color: #721c24;
}

.vra-single-event__badge.vra-status-cancelled {
    background: #e2e3e5;
    color: #383d41;
}

.vra-single-event__details {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.vra-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f6f7f7;
    border-radius: 6px;
}

.vra-detail-item .dashicons {
    color: #2271b1;
    font-size: 20px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.vra-detail-item strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #646970;
    margin-bottom: 0.25rem;
}

.vra-detail-item span:last-child {
    font-size: 0.95rem;
    color: #1d2327;
}

.vra-venue-address {
    display: block;
    font-size: 0.85rem;
    color: #646970;
    margin-top: 0.25rem;
    white-space: pre-line;
}

.vra-detail-item a {
    color: #2271b1;
    text-decoration: none;
}

.vra-detail-item a:hover {
    text-decoration: underline;
}

.vra-detail-item--captain {
    background: #fcf9e8;
    border-left: 3px solid #dba617;
}

.vra-detail-item--captain .dashicons {
    color: #dba617;
}

.vra-captain-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #fcf9e8;
    border: 1px solid #dba617;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.vra-captain-info .dashicons {
    color: #dba617;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.vra-row-captain {
    background: #fcf9e8 !important;
}

.vra-single-event__description {
    padding: 0 1.5rem 1.5rem;
    color: #50575e;
    line-height: 1.6;
}

.vra-single-event__signup-section {
    padding: 1.5rem;
    border-top: 1px solid #f0f0f1;
    background: #fafafa;
}

.vra-single-event__admin {
    padding: 1.5rem;
    border-top: 2px solid #dcdcde;
    background: #f6f7f7;
}

.vra-single-event__admin h3 {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: #1d2327;
}

.vra-participants-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.vra-participants-table th,
.vra-participants-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #f0f0f1;
}

.vra-participants-table th {
    background: #fafafa;
    font-weight: 600;
    font-size: 0.85rem;
    color: #646970;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vra-participants-table td {
    font-size: 0.9rem;
    color: #1d2327;
}

.vra-participants-table tr:last-child td {
    border-bottom: none;
}

.vra-admin-link {
    margin-top: 1rem;
}

.vra-admin-link .button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
}

.vra-admin-link .button:hover {
    background: #135e96;
    color: #fff;
}

/* Responsive Single Event */
@media (max-width: 600px) {
    .vra-single-event__header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .vra-single-event__details {
        grid-template-columns: 1fr;
    }
}

/* Member Dashboard
   ========================================================================== */

.vra-dashboard {
    max-width: 900px;
    margin: 1.5rem auto;
}

.vra-dashboard__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 8px 8px 0 0;
    gap: 1rem;
}

.vra-dashboard__welcome h2 {
    margin: 0 0 0.25rem;
    font-size: 1.5rem;
    color: #1d2327;
}

.vra-dashboard__status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.vra-status-badge--approved {
    background: #d4edda;
    color: #155724;
}

.vra-status-badge--pending {
    background: #fff3cd;
    color: #856404;
}

.vra-status-badge--rejected {
    background: #f8d7da;
    color: #721c24;
}

.vra-dashboard__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: #f6f7f7;
    border-left: 1px solid #dcdcde;
    border-right: 1px solid #dcdcde;
}

.vra-stat-box {
    text-align: center;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #dcdcde;
}

.vra-stat-box__number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2271b1;
    line-height: 1;
}

.vra-stat-box__label {
    display: block;
    font-size: 0.85rem;
    color: #646970;
    margin-top: 0.5rem;
}

.vra-dashboard__section {
    padding: 1.5rem;
    background: #fff;
    border-left: 1px solid #dcdcde;
    border-right: 1px solid #dcdcde;
}

.vra-dashboard__section h3 {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: #1d2327;
}

.vra-dashboard__events {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vra-event-mini-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f6f7f7;
    border-radius: 6px;
    gap: 1rem;
}

.vra-event-mini-card__info strong {
    display: block;
    color: #1d2327;
}

.vra-event-mini-card__info span {
    font-size: 0.85rem;
    color: #646970;
}

.vra-waitlist-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vra-waitlist-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f1;
}

.vra-waitlist-list li:last-child {
    border-bottom: none;
}

.vra-dashboard__actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.vra-action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: #f6f7f7;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    text-decoration: none;
    color: #1d2327;
    transition: all 0.2s ease;
}

.vra-action-card:hover {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
    text-decoration: none;
}

.vra-action-card:hover .dashicons,
.vra-action-card:hover span {
    color: #fff;
}

.vra-action-card .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.vra-dashboard__notice {
    margin: 0;
    border-radius: 0;
    border-left: 1px solid #dcdcde;
    border-right: 1px solid #dcdcde;
}

/* Buttons */
.vra-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.vra-btn--secondary {
    background: #f6f7f7;
    color: #1d2327;
    border: 1px solid #dcdcde;
}

.vra-btn--secondary:hover {
    background: #e0e0e0;
    color: #1d2327;
}

.vra-btn--small {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    background: #2271b1;
    color: #fff;
}

.vra-btn--small:hover {
    background: #135e96;
    color: #fff;
}

.vra-btn-primary {
    background: #2271b1;
    color: #fff;
}

.vra-btn-primary:hover {
    background: #135e96;
    color: #fff;
}

/* Profile Page
   ========================================================================== */

.vra-profile {
    max-width: 700px;
    margin: 1.5rem auto;
}

.vra-card {
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    overflow: hidden;
}

.vra-card-header {
    padding: 1.25rem 1.5rem;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f1;
}

.vra-card-header h2 {
    margin: 0;
    font-size: 1.25rem;
    color: #1d2327;
}

.vra-card-body {
    padding: 1.5rem;
}

.vra-form-section {
    margin-bottom: 1.5rem;
}

.vra-form-section:last-child {
    margin-bottom: 0;
}

.vra-form-section-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #646970;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0f0f1;
}

.vra-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.vra-form-group {
    margin-bottom: 1rem;
}

.vra-form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.35rem;
    color: #1d2327;
    font-size: 0.9rem;
}

.vra-form-group input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #dcdcde;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
}

.vra-form-group input:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.1);
}

.vra-form-group--error input {
    border-color: #d63638;
}

.vra-field-error {
    display: block;
    font-size: 0.8rem;
    color: #d63638;
    margin-top: 0.25rem;
}

.vra-required {
    color: #d63638;
}

.vra-form-actions {
    padding-top: 1rem;
    border-top: 1px solid #f0f0f1;
}

/* Responsive Dashboard & Profile */
@media (max-width: 600px) {
    .vra-dashboard__header {
        flex-direction: column;
        text-align: center;
    }

    .vra-dashboard__stats {
        grid-template-columns: 1fr;
    }

    .vra-dashboard__actions-grid {
        grid-template-columns: 1fr;
    }

    .vra-form-row {
        grid-template-columns: 1fr;
    }
}
