/* Debug and staging banners for non-production environments */
.debug-banner {
    background-color: #ffff10;
    color: #856404;
    text-align: center;
    padding: 0.25rem;
    font-weight: bold;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    font-size: 0.8rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.staging-banner {
    background-color: #f82710;
    color: #421c14;
    text-align: center;
    padding: 0.25rem;
    font-weight: bold;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    font-size: 0.8rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.debug-banner + header,
.staging-banner + header {
    margin-top: 24px;
}

/* Debug tools styling */
.debug-tools {
    margin-top: 2rem;
    padding: 1.5rem;
    border: 2px dashed var(--warning-color, #ff9800);
    border-radius: 8px;
    background-color: rgba(255, 152, 0, 0.05);
    position: relative;
}

.debug-tools h3 {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    color: var(--warning-color, #ff9800);
    font-weight: bold;
    text-align: center;
}

.debug-button {
    padding: 0.75rem 1rem;
    background-color: var(--warning-color, #ff9800);
    color: white;
    text-align: center;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.debug-button:hover {
    background-color: var(--warning-hover-color, #f57c00);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.debug-note {
    font-size: 0.75rem;
    color: var(--text-muted-color, #666);
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
}

@media screen and (min-width: 768px) {
    .debug-tools {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}
