/*
 * page-support.css
 * Styles specific to the support section views (support, ticket, tickets, newticket,
 * ticketstatus, claim-download, text-email, gdpr_request).
 * Loaded via <link> in each support view. Contains bare element selectors (label, p, i)
 * that are intentionally scoped to support pages only.
 */

/* --- Subject / navigation wizard --- */
.subject-option {
    border: 2px solid #f5f5f5;
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: border 0.3s, background-color 0.3s;
    color: #777;
    font-weight: 900;
    font-size: 1.1rem;
}

.subject-option:hover {
    border-color: #007bff;
    background-color: #f0f8ff;
}

.subject-option.selected {
    border-color: #007bff;
    background-color: #e7f3ff;
}

.navigation {
    margin-top: 20px;
}

#nextButton:disabled {
    background-color: #c0c0c0;
    cursor: not-allowed;
}

/* --- Support spacing utilities --- */
.ms-25 {
    margin-left: 25px;
}

.mt-25 {
    margin-top: 25px;
}

.mb-25 {
    margin-bottom: 25px;
}

.p-25 {
    padding: 25px;
}

.hidden {
    display: none;
}

/* --- Support typography --- */
/* Note: bare element selectors below are intentional — this stylesheet is
   loaded exclusively on support pages, so they don't bleed globally. */
label {
    font-weight: 400;
    color: #444;
    font-size: 1.1rem;
    text-align: left;
}

p {
    font-weight: 100;
    color: #777;
    font-size: 0.9rem;
}

i {
    color: #333;
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

#dynamic-message {
    font-weight: 400;
    color: #444;
    font-size: 1.1rem;
    text-align: left;
}

/* --- claim-download / text-email --- */
.inset-border {
    border: 3px solid #001F3F;
    border-radius: 10px;
}

/* --- GDPR request form --- */
.pi-request-wrap {
    min-height: 89vh;
    padding-bottom: 180px;
}

.pi-request-card {
    height: auto !important;
    min-height: 0 !important;
}

.pi-check-item {
    font-size: 0.92rem;
    margin-bottom: 0.25rem;
}

.pi-check-ok {
    color: #198754;
    font-weight: 600;
}

.pi-check-no {
    color: #dc3545;
    font-weight: 600;
}

.pi-check-na {
    color: #6c757d;
}

.pi-pulse {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 8px;
    border-radius: 50%;
    background: #0d6efd;
    animation: piPulse 1.1s ease-in-out infinite;
    vertical-align: middle;
}

@keyframes piPulse {
    0%   { transform: scale(0.75); opacity: 0.5; }
    50%  { transform: scale(1.2);  opacity: 1; }
    100% { transform: scale(0.75); opacity: 0.5; }
}
