#bold-csp-verifier-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.results-footer {
    display: flex;
    gap: 1rem;
    justify-content: space-evenly;
}

#bold-csp-ignore-btn {
    background-color: white;
    color: #303030;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#bold-csp-get-help-btn {
    background-color: #303030;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#bold-csp-results-modal {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-self: anchor-center;
    gap: 2rem;
    height: fit-content;
    width: 25%;
    padding: 2rem;
    border-radius: 8px;
    background: white;
    position: fixed;
    z-index: 99999;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.verifier-overlay {
    height: 100vh;
    width: 100vw;
    opacity: 0.7;
    background: grey;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.verifier-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    display: flex;
    flex-direction: column;
    z-index: 9999;
    justify-self: center;
    align-self: anchor-center;
}

.verifier-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 1rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.verifier-aside {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: flex;
    flex-direction: column;
}

.verifier-aside-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    font-weight: bold;
}

.verifier-aside-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.verifier-aside-footer {
    padding: 1rem;
    border-top: 1px solid #eee;
    display: flex;
    gap: 1rem;
}

.verifier-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.verifier-btn-secondary {
    background: #f8f9fa;
    color: #6c757d;
}

.verifier-btn-primary {
    background: #007bff;
    color: white;
}

.flash {
    background-color: limegreen !important;
    animation: flash 2s ease-in-out infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
