#gcd-password-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f0f4f8;
    border: 1px solid #d0d7de;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-family: sans-serif;
    font-size: 0.9rem;
}

#gcd-password-bar label {
    font-weight: 600;
    white-space: nowrap;
}

#gcd-secret {
    flex: 1 1 200px;
    padding: 0.4rem 0.6rem;
    border: 1px solid #9ba3af;
    border-radius: 3px;
    font-size: 0.9rem;
}

#gcd-secret-apply {
    padding: 0.4rem 0.9rem;
    background: #003f7d;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.9rem;
}

#gcd-secret-apply:hover,
#gcd-secret-apply:focus {
    background: #005baa;
    outline: 2px solid #005baa;
    outline-offset: 2px;
}

.gcd-hint {
    width: 100%;
    font-size: 0.8rem;
    color: #555;
}

#gcd-status-message {
    width: 100%;
    font-size: 0.85rem;
    color: #1a6b2e;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#gcd-status-message.is-visible {
    opacity: 1;
}

#gcd-viewer-container {
    min-height: 600px;
}
