.debug-status {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #1e1e1e;
    color: #00ff00;
    padding: 15px;
    line-height: 1.5;
    border-radius: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    border: 5px solid #333;
    z-index: 9999;
}

#debugData {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 2px;
    background: black;
}

#debugData h2, #debugData h3 {
    color: #00ff00;
    margin-bottom: 2px;
}

.debug-data {
    background-color: #1e1e1e;
    color: #00ff00;
    padding: 20px;
    border-radius: 5px;
    white-space: pre;
    line-height: 1;
    overflow-x: auto;
    font-size: 14px;
    border: 1px solid #333;
    margin: 10px 0;
}

    .env-badge {
        padding: 2px 6px;
        border-radius: 3px;
        font-weight: bold;
    }

    .debug-status a {
        color: white;
    }

    .env-badge.development {
        background-color: #28a745;
        color: white;
        font-size: 1.2rem;
    }

    .env-badge.stage {
        background-color: #ffc107;
        color: black;
    }

    .env-badge.production {
        background-color: #dc3545;
        color: white;
    }