/* ========== OGÓLNE USTAWIENIA STRONY ========== */

html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
    background: linear-gradient(to bottom, #2b2e35 0%, #1e1f24 100%);
    color: #ddd;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 20px;
    background: transparent;
    color: #ddd;
}

/* ========== STYL MENU IKON ========== */

/* ========== FORMULARZ WYLOGOWANIA ========== */
.logout-form {
    margin: 0;
}

/* ========== FOKUSY I FORMY ========== */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem #fff, 0 0 0 0.25rem #2b8afc;
}

/* ========== TYPOGRAFIA OGÓLNA ========== */
h1, h2, h3, h4, h5, h6 {
    color: #f0f0f0;
    text-shadow: 0 0 3px #80d0ff;
}

p, span, label, input, select, textarea {
    color: #ddd;
    font-size: 1rem;
}

.section-title {
    font-size: 1.4rem;
    color: FF6000
    text-shadow: 0 0 5px FF6000;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== LINKI ========== */
a {
    color: #2eaafc;
    text-decoration: none;
    transition: color 0.2s ease;
}

    a:hover {
        color: #6fdcff;
        text-shadow: 0 0 5px #6fdcff;
    }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #2b2e35;
}

::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #777;
    }










.container {
    max-width: 100% !important;
}

.dashboard-container {
    max-width: 100%;
    width: 80%;
/*    padding-left: 20px;
    padding-right: 20px;*/
    padding-top: calc(var(--topbar-h) + 20px);
}


h2 {
    text-align: center;
    margin-bottom: 20px;
}

.column-container {
    display: flex;
    justify-content: space-between;
}

.column {
    width: 30%;
    padding: 20px;
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 0 10px;
    text-align: center;
}

    .column h3 {
        margin-top: 0;
    }

    .column a {
        text-decoration: none;
        color: #007bff;
        font-size: 16px;
    }

        .column a:hover {
            text-decoration: underline;
        }

.column-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

hr {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid #ddd;
}

/* menu gorne tymnczasowe*/

/* Header */
.site-header {
    position: fixed;
    background: white;
    color: #FFF;
    width: 100%;
    /* padding: 10px 0;*/
    text-align: center;
    z-index: 9998;
}


.icon-bar i:hover {
    color: teal;
}







/* STYLE ADMINA INDEX */
.text-glow {
    color: #00f0ff;
    text-shadow: 0 0 4px FF6000, 0 0 8px FF6000;
    font-weight: bold;
}

.btn-primary-glow {
    background: linear-gradient(to right, #FF6000, #FFA500);
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: 0 0 6px #FFA500;
    transition: all 0.2s ease;
}
.admin-items-panel {
    background-color: #1e2024;
    border: 1px solid #444;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.05);
}
.admin-enemyspawns-panel {
    background-color: #1d1f22;
    border: 1px solid #444;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.05);
}
.admin-enemyloots-panel {
    background-color: #1e1f23;
    border: 1px solid #444;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.08);
}
    .btn-primary-glow:hover {
        background: linear-gradient(to right, #00d9ff, #0090ff);
        box-shadow: 0 0 8px #00f0ff;
    }

.admin-category-panel {
    background-color: #1e1f23;
    border: 1px solid #444;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.08);
}

.table thead th {
    background-color: #eee;
    color: #222;
    font-weight: bold;
}

.table td,
.table th {
    vertical-align: middle;
    font-size: 0.9rem;
}
.table-wrapper {
    background-color: #1e1f22;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 0 15px rgba(0,255,255,0.1);
}

.table-dark th,
.table-dark td {
    color: #eee;
    vertical-align: middle;
}

.badge {
    font-size: 0.75rem;
    padding: 5px 10px;
    background-color: #2c2f36;
    border: 1px solid #444;
}

/* SELECT WYGLAD*/
/* === Styl dla SELECT w dark fantasy stylu === */
select,
.form-select {
    background-color: #2b2f36;
    color: #ddd;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 10px;
    font-size: 0.95rem;
    width: 100%;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

    select:focus,
    .form-select:focus {
        outline: none;
        border-color: #FFA500;
        box-shadow: 0 0 6px rgba(0, 191, 255, 0.5);
        background-color: #2e323a;
        color: #fff;
    }

    /* Styl opcji wewnątrz selecta (dla lepszej czytelności na hoverze) */
    select option,
    .form-select option {
        background-color: #1d1f22;
        color: #eee;
    }

    /* Styl hover tylko dla nie-disabled */
    select:not(:disabled):hover,
    .form-select:not(:disabled):hover {
        border-color: FF6000;
        box-shadow: 0 0 8px rgba(0, 255, 255, 0.2);
        cursor: pointer;
    }

    /* Styl dla disabled */
    select:disabled,
    .form-select:disabled {
        background-color: #1a1a1a;
        color: #777;
        cursor: not-allowed;
        opacity: 0.6;
    }

/* EDit ADMIN*/
.form-wrapper {
    /*max-width: 480px;*/
    background-color: #1d1f22;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 0 16px rgba(0, 255, 255, 0.1);
    margin-bottom: 40px;
}

.neon-header {
    font-size: 1.5rem;
    color: #FF6000;
    text-shadow: 0 0 6px #FF6000;
    margin-bottom: 25px;
    text-align: center;
}

.dark-input {
    background-color: #2c2f36;
    color: #eee;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 8px 12px;
}

    .dark-input:focus {
        border-color: #FFA500;
        box-shadow: 0 0 5px rgba(0, 191, 255, 0.5);
        outline: none;
    }