/* ============================================================
   Client Dashboard
   FILE NAME: client-dashboard.css
   UPLOAD TO: wp-content/themes/twentytwentyfive/
   ============================================================ */

.llcdash-wrap {
    min-height: 70vh;
    background: #10222C;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.llcdash-header {
    background: #1B3A4B;
    border-top: 3px solid #2E8B7A;
    border-radius: 14px;
    padding: 30px 35px;
    margin-bottom: 32px;
}

.llcdash-header h1 {
    color: #C9D9DE;
    font-size: 28px;
    margin: 0 0 10px;
}

.llcdash-logout-link {
    display: inline-block;
    color: #8FA89C;
    font-size: 12px;
    text-decoration: underline;
}

.llcdash-logout-link:hover {
    color: #4FB3A0;
}

.llcdash-section {
    margin-bottom: 32px;
}

.llcdash-section h2 {
    color: #C9D9DE;
    font-size: 20px;
    margin: 0 0 6px;
}

.llcdash-section-sub {
    color: #8FA89C;
    font-size: 13px;
    margin: 0 0 18px;
}

.llcdash-pathway-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.llcdash-pathway-card {
    background: #1B3A4B;
    border: 1px solid #2E8B7A;
    border-radius: 12px;
    padding: 20px;
}

.llcdash-pathway-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.llcdash-pathway-label {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
}

.llcdash-pathway-badge {
    display: inline-block;
    width: fit-content;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.llcdash-badge-not_started { background: rgba(143,168,156,0.15); color: #8FA89C; }
.llcdash-badge-completed { background: rgba(79,179,160,0.15); color: #4FB3A0; }
.llcdash-badge-not_needed { background: rgba(90,140,220,0.15); color: #7CA6E8; }

.llcdash-pathway-select {
    width: 100%;
    padding: 8px 10px;
    background: #142A38;
    border: 1px solid #2E8B7A;
    color: #C9D9DE;
    border-radius: 6px;
    font-size: 13px;
    box-sizing: border-box;
}

.llcdash-empty-state {
    background: #1B3A4B;
    border: 1px dashed #2E8B7A;
    border-radius: 12px;
    padding: 26px 24px;
    text-align: center;
}

.llcdash-empty-state p {
    color: #A9C2CE;
    font-size: 14px;
    margin: 0 0 14px;
}

.llcdash-empty-cta {
    display: inline-block;
    background: #4FB3A0;
    color: #10222C;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
}

.llcdash-empty-cta:hover {
    background: #2E8B7A;
    color: #FFFFFF;
}

.llcdash-journey-select {
    padding: 10px 12px;
    background: #142A38;
    border: 1px solid #2E8B7A;
    color: #C9D9DE;
    border-radius: 8px;
    font-size: 14px;
    max-width: 340px;
    width: 100%;
}

.llcdash-journey-saved {
    display: inline-block;
    margin-left: 12px;
    color: #4FB3A0;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.llcdash-journey-saved-show {
    opacity: 1;
}

.llcdash-favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.llcdash-favorite-card {
    background: #1B3A4B;
    border: 1px solid #2E8B7A;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.llcdash-favorite-link {
    text-decoration: none;
    display: block;
}

.llcdash-favorite-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
    display: block;
}

.llcdash-favorite-name {
    display: block;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

.llcdash-favorite-remove {
    background: transparent;
    border: 1px solid #B32D2D;
    color: #ff9c9c;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 12px;
    cursor: pointer;
}

.llcdash-favorite-remove:hover {
    background: #B32D2D;
    color: #FFFFFF;
}

.llcdash-appts-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.llcdash-appt-card {
    background: #1B3A4B;
    border-top: 3px solid #2E8B7A;
    border-radius: 12px;
    padding: 18px 22px;
}

.llcdash-appt-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.llcdash-appt-consultant {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 15px;
    margin: 0 0 4px;
}

.llcdash-appt-datetime {
    color: #C9D9DE;
    font-size: 13px;
    margin: 0 0 2px;
}

.llcdash-appt-type {
    color: #A9C2CE;
    font-size: 12px;
    font-style: italic;
    margin: 0;
}

.llcdash-appt-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.llcdash-appt-upcoming { background: rgba(79,179,160,0.15); color: #4FB3A0; }
.llcdash-appt-completed { background: rgba(90,140,220,0.15); color: #7CA6E8; }
.llcdash-appt-canceled { background: rgba(179,45,45,0.15); color: #ff9c9c; }

.llcdash-rate-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.llcdash-rate-card,
.llcdash-manual-rate-card {
    background: #1B3A4B;
    border: 1px solid #2E8B7A;
    border-radius: 12px;
    padding: 20px 22px;
}

.llcdash-rate-consultant {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 15px;
    margin: 0 0 4px;
}

.llcdash-rate-date {
    color: #8FA89C;
    font-size: 13px;
    margin: 0 0 12px;
}

.llcdash-star-picker {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
}

.llcdash-star {
    font-size: 26px;
    color: #3a5560;
    cursor: pointer;
    transition: color 0.1s ease;
}

.llcdash-star.is-filled {
    color: #E6B43C;
}

.llcdash-rate-review,
.llcdash-manual-rate-card textarea {
    width: 100%;
    min-height: 70px;
    padding: 10px 12px;
    background: #142A38;
    border: 1px solid #2E8B7A;
    color: #C9D9DE;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    box-sizing: border-box;
    margin-bottom: 12px;
    resize: vertical;
}

.llcdash-rate-submit,
#llcdash-manual-submit {
    background: #4FB3A0;
    color: #10222C;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    padding: 9px 20px;
    font-size: 13px;
    cursor: pointer;
}

.llcdash-rate-submit:hover,
#llcdash-manual-submit:hover {
    background: #2E8B7A;
    color: #FFFFFF;
}

.llcdash-rate-submit:disabled,
#llcdash-manual-submit:disabled {
    background: #3a5560;
    color: #8FA89C;
    cursor: not-allowed;
}

.llcdash-rate-msg {
    font-size: 12px;
    margin-top: 8px;
    min-height: 14px;
}

.llcdash-rate-msg.success { color: #4FB3A0; }
.llcdash-rate-msg.error { color: #ff9c9c; }

.llcdash-manual-rate-card label {
    display: block;
    color: #A9C2CE;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 14px 0 6px;
}

.llcdash-manual-rate-card select,
.llcdash-manual-rate-card input[type="text"],
.llcdash-manual-rate-card input[type="date"] {
    width: 100%;
    padding: 9px 12px;
    background: #142A38;
    border: 1px solid #2E8B7A;
    color: #C9D9DE;
    border-radius: 6px;
    font-size: 13px;
    box-sizing: border-box;
    font-family: inherit;
}

.llcdash-toggle-btn {
    background: transparent;
    border: 1px solid #4FB3A0;
    color: #4FB3A0;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.llcdash-toggle-btn:hover {
    background: #4FB3A0;
    color: #10222C;
} 