#tl_translation_maintenance {
    border-top: 1px solid var(--border);
}

#tl_translation_maintenance h2 {
    margin: 16px 15px 3px
}

#tl_translation_maintenance fieldset {
    padding-bottom: 15px;
}

#tl_translation_maintenance legend {
    margin-bottom: 3px;
}

#tl_translation_maintenance .tl_submit_container {
    background: none;
}

#tl_page_export {
    border-top: 1px solid var(--border);
}

#tl_page_export .tl_submit_container {
    background: none;
}

/* Base environment badge */
body::after {
    content: "PROD";
    position: fixed;
    top: 27px;
    right: -101px;
    width: 280px;
    padding: 8px;
    background: #10b981;
    color: white;
    text-align: center;
    font-family: sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: rotate(45deg);
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    pointer-events: none;
}

body.dev::after {
    background: #ef4444;
    content: "DEV";
}

body.test::after {
    content: "TEST";
    background:#f59e0b;
}

body.local::after {
    content: "LOCAL";
    background: #aaa8f9;
}