/* Development warning styles for rustycord documentation */

/* Global development banner */
.md-banner {
    background: linear-gradient(45deg, #ff4444, #ff6b6b);
    color: white !important;
    font-weight: bold;
    padding: 10px 0;
    text-align: center;
    border-bottom: 3px solid #ff0000;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
}

.md-banner a {
    color: white !important;
    text-decoration: underline;
}

/* Development badge in header */
.md-header__title::after {
    content: " [DEV]";
    background: #ff4444;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.7em;
    margin-left: 8px;
    vertical-align: middle;
}

/* Enhanced warning admonitions */
.md-typeset .admonition.danger,
.md-typeset .admonition.warning {
    border-left: 4px solid #ff4444 !important;
}

.md-typeset .admonition.danger>.admonition-title,
.md-typeset .admonition.warning>.admonition-title {
    background: rgba(255, 68, 68, 0.1) !important;
    border-bottom: 1px solid #ff4444 !important;
}

/* Development status indicators */
.dev-status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: bold;
    margin: 2px;
}

.dev-status.working {
    background: #4caf50;
    color: white;
}

.dev-status.development {
    background: #ff9800;
    color: white;
}

.dev-status.missing {
    background: #f44336;
    color: white;
}

/* Make code blocks with warnings more prominent */
.md-typeset .highlight .err {
    background: rgba(255, 68, 68, 0.1);
    border-left: 3px solid #ff4444;
    padding-left: 8px;
}

/* Footer development notice */
.md-footer-meta__inner::before {
    /* content: "⚠️ Development Version - Not Production Ready"; */
    display: block;
    background: #ff4444;
    color: white;
    padding: 8px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 16px;
    border-radius: 4px;
}

/* Navigation development indicators */
.md-nav__title[for="__drawer"]::after {
    content: " (DEV)";
    color: #ff4444;
    font-size: 0.8em;
}

/* Search results development warning */
.md-search-result__teaser::before {
    content: "⚠️ DEV: ";
    color: #ff4444;
    font-weight: bold;
}

/* Tables with status indicators */
table.status-table {
    border-collapse: collapse;
    width: 100%;
}

table.status-table th,
table.status-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

table.status-table th {
    background: #f5f5f5;
    font-weight: bold;
}

table.status-table .status-working {
    background: #e8f5e8;
    color: #2e7d32;
}

table.status-table .status-development {
    background: #fff3e0;
    color: #ef6c00;
}

table.status-table .status-missing {
    background: #ffebee;
    color: #c62828;
}

/* Mobile responsive adjustments */
@media screen and (max-width: 768px) {
    .md-header__title::after {
        display: none;
    }

    .md-banner {
        font-size: 0.9em;
        padding: 8px 0;
    }
}

/* Print styles - ensure warnings are visible in print */
@media print {

    .md-banner,
    .md-footer-meta__inner::before {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}