/* =================================================================== */
/* --- ACCOUNT DOSSIER "SPOKE" PAGE STYLES --- */
/* =================================================================== */

/* Make the grid 1-column and narrower */
.spoke-card-grid.grid-cols-1 {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

/* Style for the read-only value */
.setting-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    padding: 0 5px; /* Aligns with button padding */
}

/* Style for the placeholder text */
.setting-value.is-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Style for the footer disclaimer */
.dossier-footer-disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    width: 100%;
}

/* Override footer padding for the disclaimer */
.spoke-card .card-footer {
    padding: 20px 25px;
    justify-content: center;
}

/* --- [NEW] Dossier Interactivity Styles --- */

/* Create a new group for the value and toggle */
.dossier-value-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Give the read-only value a fixed width so toggles align */
.dossier-value-group .setting-value {
    width: 160px; /* Adjust as needed */
    text-align: right;
    padding: 0; /* Remove old padding */
}

/* Style the header row */
.dossier-header-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-bottom: 5px;
}
.dossier-header-row .setting-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 500;
}
.dossier-header-row .visibility-title {
    /* Center the 'Visible on Hub' text above the toggles */
    width: 50px; /* Width of a toggle */
    text-align: center;
}

/* Make toggles green when checked */
.toggle-switch input:checked + .slider {
    background-color: #67c23a; /* Green */
}