@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;700;900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Roboto, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #131212;
    color: #fff;
}

nav {
    background-color: rgba(24, 211, 202, 0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 75px;
}

nav a.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

img.logo {
    height: 75px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    height: 100%;
    padding-right: 20px;
}

nav ul li a, nav ul li span {
    color: #fff;
    padding: 0 15px;
    line-height: 75px; 
    text-decoration: none;
    display: block;
}

nav ul li a:hover, nav ul li span.nav-username {
    color: #00ffff;
}

nav ul li span.nav-username {
    font-weight: bold;
}

h1 {
    color: #00ffff;
    text-align: center;
    margin: 20px 0;
    text-transform: uppercase;
}

.main-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.slider-container {
    width: 75%;
    max-width: 1200px;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid #333;
}

.banner {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.banner.active {
    opacity: 1;
}

.daty-repertuar {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 25px 0 30px 0;
    padding-top: 40px;
    flex-wrap: wrap;
}

.data-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #222;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    min-width: 80px;
    border: 1px solid #444;
    transition: 0.3s;
}

.data-item.active, .data-item:hover {
    background: #00ffff;
    color: #000;
    border-color: #fff;
}

.kontener-filmow {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    width: 90%;
    max-width: 1200px;
    margin-bottom: 50px;
}

.film-karta-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.film-karta {
    background: #1c1c1c;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.film-karta-link:hover .film-karta {
    transform: translateY(-10px) scale(1.02);
    border-color: #00ffff;
    box-shadow: 0 0 25px 5px rgba(0, 255, 255, 0.4);
}

.film-karta img {
    width: 100%;
    height: 380px;
    object-fit: contain;
    background: #000;
}

.film-info {
    padding: 15px;
}

.film-info h3 {
    color: #00ffff;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
}

.meta {
    color: #888;
    font-size: 13px;
    margin-bottom: 15px;
}

.godziny-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.godzina-btn {
    background: #333;
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    border-radius: 6px;
    min-width: 80px;
    border: 1px solid #444;
    transition: 0.2s;
    line-height: 1.2;
}

.godzina-btn .godzina-tekst {
    font-weight: bold;
    font-size: 16px;
}

.godzina-btn .sala-tekst {
    font-size: 10px;
    text-transform: uppercase;
    color: #00ffff;
    opacity: 0.9;
    margin-top: 2px;
}

.godzina-btn:hover {
    background: #00ffff;
    color: #000;
    border-color: #00ffff;
}

.godzina-btn:hover .sala-tekst {
    color: #000;
}

.godzina-btn.static:hover {
    background: #333;
    color: #fff;
    border-color: #444;
    cursor: default;
}

.godzina-btn.big {
    padding: 15px 25px;
    min-width: 100px;
}

.godzina-btn.big .godzina-tekst {
    font-size: 20px;
}

.film-detale-kontener {
    width: 90%;
    max-width: 1100px;
    margin: 50px auto;
    background: #1c1c1c;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #333;
}

.film-header {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.film-plakat-duzy {
    width: 350px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.film-opis-sekcja {
    flex: 1;
}

.detale-tytul {
    color: #00ffff;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.opis-tekst {
    margin: 20px 0;
    line-height: 1.6;
}

.seanse-dzis {
    margin-top: 40px;
}

.seanse-dzis h3 {
    margin-bottom: 15px;
}

.back-btn {
    display: inline-block;
    margin-top: 20px;
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
}

.login_register_container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

form.login_register {
    background: #1c1c1c;
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    border: 1px solid #333;
}

form.login_register label {
    margin-bottom: 8px;
    color: #00ffff;
    font-weight: bold;
    font-size: 0.9rem;
}

input[type="text"], input[type="password"], input[type="email"], input[type="number"], textarea, select, input[type="datetime-local"] {
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 6px;
    background: #121212;
    color: #fff;
    outline: none;
    width: 100%;
}

input:focus {
    border-color: #00ffff;
}

input[type="submit"], button {
    background: #00ffff;
    color: #000;
    padding: 15px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 900;
    text-transform: uppercase;
    transition: 0.3s;
}

input[type="submit"]:hover, button:hover {
    background: #00cccc;
    transform: scale(1.02);
}

.error, .sukces, .komunikat-sukces, .komunikat-blad {
    width: 100%;
    max-width: 400px;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    margin-top: 5px;
}

.error, .komunikat-blad {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4d4d;
    border: 1px solid #ff4d4d;
}

.sukces, .komunikat-sukces {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    border: 1px solid #00ff00;
}

table {
    width: 90%;
    border-collapse: collapse;
    background: #1c1c1c;
    color: #fff;
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
}

th, td {
    padding: 12px;
    border-bottom: 1px solid #333;
    text-align: center;
}

th { 
    background: rgba(0, 255, 255, 0.2); 
    color: #00ffff;
}

tr:hover {
    background: rgba(0, 255, 255, 0.1);
}

.checkbox-fotele {
    display: none;
}

.fotel-box {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 26px;
    margin: 2px;
    cursor: pointer;
    border-radius: 5px;
    border: 2px solid;
    background-color: #ffffff;
    transition: all 0.2s ease;
    font-weight: bold;
    box-sizing: border-box;
}

.typ-super_promo { 
    border-color: #a5dafd; 
    color: black; 
}

.typ-promo { 
    border-color: #4a84aa;
     color: black; 
}

.typ-standard { 
    border-color: #2ecc71; 
    color: black; 
}

.typ-vip { 
    border-color: #f1c40f; 
    color: black; 
}

.checkbox-fotele:checked + .typ-super_promo { 
    background-color: #a5dafd; 
    color: #fff; 
}

.checkbox-fotele:checked + .typ-promo {
     background-color: #4a84aa;
      color: #fff; 
}

.checkbox-fotele:checked + .typ-standard { 
    background-color: #2ecc71; 
    color: #fff; 
}

.checkbox-fotele:checked + .typ-vip { 
    background-color: #f1c40f; 
    color: #fff; 
}

.fotel-zajety {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #e74c3c;
    color: white;
    margin: 2px;
    text-align: center;
    line-height: 30px;
    font-size: 12px;
    border-radius: 4px;
    cursor: not-allowed;
    opacity: 0.6;
}

.ekran {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 5px;
    margin-bottom: 20px;
    letter-spacing: 5px;
    width: 100%;
}

.rzad-kontener {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.polozenie {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    width: 95%;
    max-width: 1400px;
    margin: 40px auto;
}

.admin-panel {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 320px;
    padding: 40px 30px;
    border-radius: 15px;
    background: #1c1c1c;
    border: 1px solid #333;
    text-align: center;
    align-items: center; 
}

.admin-panel h2 {
    color: #00ffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 1.3rem;
}

.admin-panel form {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center; 
}

.admin-panel p {
    margin-bottom: 10px;
    color: #888;
}

.admin-panel label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    cursor: pointer;
    width: 100%;
}

.admin-panel input[type="file"] {
    margin: 10px auto 20px auto;
    width: auto;
    max-width: 100%;
}

.admin-panel textarea {
    min-height: 120px;
    resize: none;
}

.admin-panel button {
    margin-top: auto;
    width: 100%;
    max-width: 280px; 
    align-self: center; 
}

img.table-img {
    width: 80px;
    border-radius: 6px;
}

.admin-table {
    width: 95%;
    max-width: 1400px;
    margin: 40px auto;
}

@media (max-width: 1100px) {
    .polozenie {
        flex-direction: column;
        align-items: center;
    }
    .admin-panel {
        width: 100%;
        max-width: 600px;
    }
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%; 
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
    background-color: #050f10; 
    color: #f0f0f0;
}

.main-content {
    flex: 1; 
}

.site-footer {
    background-color: #0a191a;
    color: #ffffff;
    padding: 60px 0 20px 0;
    border-top: 4px solid #00ced1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
}


.site-footer {
    background-color: #0a191a;
    color: #ffffff;
    padding: 60px 0 20px 0;
    margin-top: 80px;
    border-top: 4px solid #00ced1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 40px;
}

.footer-logo {
    color: #00ced1;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-size: 22px;
    text-shadow: 0 0 10px rgba(0, 206, 209, 0.4);
}

.footer-heading {
    margin-bottom: 25px;
    border-bottom: 2px solid #00ced1;
    padding-bottom: 8px;
    font-size: 16px;
    display: inline-block;
    color: #f0f0f0;
}

.footer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #a0b0b0;
    max-width: 300px;
}

.footer-links {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00ced1;
    padding-left: 8px;
}

.footer-links .logout-link {
    color: #ff4d4d;
}

.footer-links .logout-link:hover {
    color: #ff8080;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #1a2e2f;
    margin-top: 30px;
    font-size: 13px;
    color: #5a6e6f;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-text {
        margin: 0 auto;
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
    background-color: #050f10;
    color: #f0f0f0;
}

.main-wrapper {
    flex: 1;
}

.site-footer {
    width: 100%;
    background-color: #0a191a;
    border-top: 4px solid #00ced1;
    padding: 40px 0 20px 0;
}

.alert-success-admin {
    margin-top: 70px;
    padding: 15px;
    background: #27ae60;
    color: white;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    border: 1px solid #1e8449;
}

.kasa-box {
    margin-top: 20px;
    background: #222;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #444;
}

.no-margin-bottom {
    margin-bottom: 0;
}

.btn-confirm-kasa {
    background: #27ae60;
    color: white;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    height: 45px;
    font-weight: bold;
    margin: 0;
}

.flex-center-margin {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.filter-box {
    background: #333;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #555;
}

.flex-row-gap {
    display: flex;
    gap: 15px;
    align-items: center;
}

.bold-text {
    font-weight: bold;
    line-height: 1;
}

.input-standard {
    padding: 12px;
    height: 45px;
    box-sizing: border-box;
    font-size: 16px;
    margin: 0;
}

.select-standard {
    padding: 0 10px;
    height: 45px;
    box-sizing: border-box;
    min-width: 150px;
    margin: 0;
}

.btn-search-admin {
    padding: 0 25px;
    height: 45px;
    cursor: pointer;
    background: #2980b9;
    color: white;
    border: none;
    font-weight: bold;
    margin: 0;
}

.reset-link {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    margin-left: 5px;
    line-height: 1;
}

.gray-text {
    color: #888;
}

.btn-danger-admin {
    background: #c0392b;
}

.btn-primary-admin {
    background: #2980b9;
}

.flex-gap-20 {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.sale-link-active {
    color: #00ffff;
    font-weight: bold;
}

.sale-link-late {
    color: #f1c40f;
}

.old-seanse-title {
    color: #888;
    margin-top: 50px;
}

.old-seanse-table {
    opacity: 0.6;
}

.wiek-tag {
    color: #ffcc00;
    font-weight: bold;
}

.film-ocena-box {
    margin-top: 15px;
    padding: 10px;
    background: rgba(0, 255, 255, 0.05);
    border-left: 4px solid #00ffff;
}

.ocena-wartosc {
    color: #00ffff;
    font-weight: bold;
}

.format-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    margin-left: 5px;
    color: #fff;
}

.format-3d {
    background: #ce0000;
}

.format-2d {
    background: #444;
}

.wiek-ograniczenie {
    color: #ffcc00;
    font-weight: bold;
}

.film-ocena-kontener {
    margin-top: 15px;
    padding: 10px;
    background: rgba(0, 255, 255, 0.05);
    border-left: 4px solid #00ffff;
}

.ocena-wartosc {
    color: #00ffff;
    font-weight: bold;
}

.badge-format {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    margin-left: 5px;
    color: #fff;
}

.format-3d {
    background: #ce0000;
}

.format-2d {
    background: #444;
}

.status-green {
    background: #27ae60;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.status-yellow {
    background: #f39c12;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.rezerwacje-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.gray-text {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.5;
}

.komunikat-sukces {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    color: #00ff00;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.komunikat-blad {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff4d4d;
    color: #ff4d4d;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
}

.form-footer {
    margin-top: 20px;
    text-align: center;
}

.form-footer a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.form-footer a:hover {
    color: #00ffff;
}

select.input-standard {
    appearance: none;
    
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}

.bilet-wrapper {
    max-width: 500px;
    margin: 0 auto;
    border: 2px dashed #00ced1;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    border-radius: 10px;
}

.bilet-wrapper, .bilet-wrapper * {
    color: #000 !important;
}

.bilet-naglowek {
    margin: 0;
    text-transform: uppercase;
    color: #050f10 !important;
}

.bilet-info {
    text-align: left;
    margin: 20px 0;
}

.miejsce-tag { 
    display: inline-block; 
    background: #eee; 
    padding: 4px 10px; 
    margin: 3px; 
    border-radius: 4px; 
    font-size: 13px; 
    border: 1px solid #ccc;
    color: #333 !important;
}

.kod-odbioru-sekcja {
    background: #f0fbfc; 
    padding: 20px; 
    border: 2px solid #00ced1; 
    border-radius: 8px;
    text-align: center;
}

.kod-tekst {
    letter-spacing: 10px; 
    font-size: 45px; 
    margin: 10px 0; 
    font-family: monospace;
    font-weight: bold;
}

@media print {
    body * { 
        visibility: hidden; 
        background: white !important; 
    }
    .main-wrapper, .main-wrapper * { 
        visibility: visible; 
    }
    .bilet-wrapper { 
        position: absolute; 
        left: 0; 
        top: 0; 
        width: 100%; 
        border: 2px solid #000; 
        box-shadow: none;
    }
    .no-print { 
        display: none !important; 
    }
}

.brak-danych {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

.brak-danych p {
    font-size: 1.2rem;
    color: #a0b0b0;
    margin-bottom: 25px;
}

.sala-uklad {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
}

.rzad-kontener {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.numer-rzedu {
    width: 30px;
    text-align: center;
    color: #5a6e6f;
    font-weight: bold;
    font-size: 0.9rem;
}

.fotel-container {
    margin: 0 3px;
}

.fotel-box, .fotel-zajety {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    border-radius: 4px;
    transition: 0.2s;
}

.fotel-box { cursor: pointer; border: none; }

.fotel-zajety {
    background: #1a1a1a;
    color: #333;
    border: 1px solid #222;
    cursor: not-allowed;
}

.typ-promo {
     background-color: #9b59b6;
      color: white; 
}

.typ-super_promo {
     background-color: #2980b9; 
     color: white; 
}
.typ-standard {
     background-color: #27ae60;
      color: white; 
}

.typ-vip { 
    background-color: #f1c40f;
     color: #000; 
}

.checkbox-fotele:checked + .fotel-box {
    background-color: #ffffff !important;
    color: #000000 !important;
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.fotel-box:hover:not(.fotel-zajety) {
    filter: brightness(1.2);
    transform: translateY(-2px);
}

.ekran {
    width: 80%;
    max-width: 600px;
    background: #1a2e2f;
    color: #00ced1;
    text-align: center;
    padding: 10px 0;
    margin: 0 auto 50px auto;
    font-weight: bold;
    letter-spacing: 10px;
    border-bottom: 3px solid #00ced1;
    box-shadow: 0 15px 20px -10px rgba(0, 206, 209, 0.3);
}

.legenda-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #a0b0b0;
    font-size: 14px;
}

.legenda-color {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    margin-right: 12px;
}

.kasa-box form, .filter-box form {
    margin-bottom: 0 !important;
}

.kasa-box input, .filter-box input, .filter-box select {
    margin-bottom: 0 !important;
}

.alert-success-admin div {
    margin: 5px 0;
}

.alert-success-admin {
    margin-bottom: 15px;
}

.usun, 
.btn-danger-admin {
    background: #e74c3c !important;
    color: #000 !important;
    padding: 15px !important;
    border: none !important;
    cursor: pointer !important;
    border-radius: 6px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    transition: 0.3s !important;
}

.usun:hover, 
.btn-danger-admin:hover {
    background: #ff5e4d !important;
    transform: scale(1.05);
}

.btn-confirm-kasa, 
button[name="potwierdz_odbior"] {
    background: #27ae60 !important;
    color: #000 !important;
    padding: 15px !important;
    border: none !important;
    cursor: pointer !important;
    border-radius: 6px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    transition: 0.3s !important;
}

.btn-confirm-kasa:hover, 
button[name="potwierdz_odbior"]:hover {
    background: #2ecc71 !important;
    transform: scale(1.05);
}

.btn-primary-admin, 
button[name="nadaj_admina"] {
    background: #3498db !important;
    color: #000 !important;
    padding: 15px !important;
    border: none !important;
    cursor: pointer !important;
    border-radius: 6px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    transition: 0.3s !important;
}

.btn-primary-admin:hover, 
button[name="nadaj_admina"]:hover {
    background: #5dade2 !important;
    transform: scale(1.05);
}

.btn-search-admin {
    background: #f39c12 !important;
    color: #000 !important;
    padding: 15px !important;
    border: none !important;
    cursor: pointer !important;
    border-radius: 6px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    transition: 0.3s !important;
}

.btn-search-admin:hover {
    background: #fbc531 !important;
    transform: scale(1.05);
}

.nav-username {
    color: #2ecc36 !important; 
    font-weight: 1600;
    padding: 0 10px;
}

.nav-list li a[href="logout.php"] {
    color: #e74c3c !important; 
    font-weight: 900;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-list li a[href="logout.php"]:hover {
    color: #ff5e4d !important;
    letter-spacing: 1px;
}

button:active {
    transform: scale(0.95) !important;
}

table button {
    font-size: 11px !important;
}

img, video {
    max-width: 100%;
    height: auto;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 10000;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
}

@media (max-width: 992px) {
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        position: relative;
        width: 100%;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1a1a1a !important;
        opacity: 1 !important;
        background-image: none !important;
        z-index: 9999;
    }

    .nav-list.active {
        display: flex !important;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
        background-color: #1a1a1a !important;
    }

    .nav-list li a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #333;
        background-color: #1a1a1a !important;
        opacity: 1 !important;
        color: #fff;
    }

    .main-wrapper, .main-content, .container, .film-detale-kontener, .rezerwacja-kontener, .admin-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px !important;
        margin: 0 !important;
        float: none !important;
    }

    .flex-container, .flex-row, .polozenie, .film-header, .flex-container-rezerwacja {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        gap: 20px !important;
    }

    .film-opis-sekcja, .admin-panel, .sidebar, .content-area {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .sala-sekcja {
        width: 100% !important;
        overflow-x: auto !important;
        padding: 15px 0 !important;
        display: block !important;
    }

    .rzad {
        display: flex !important;
        justify-content: center !important;
        min-width: max-content;
    }

    .fotel-box, .fotel-zajety {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 11px;
        margin: 2px;
    }

    input, select, textarea, button, .btn-standard, .back-btn {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 16px !important;
        padding: 12px !important;
        margin: 8px 0 !important;
        height: auto !important;
    }

    .daty-repertuar {
        display: flex !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
    }

    .data-item {
        flex: 0 0 auto !important;
        min-width: 90px !important;
    }

    .godziny-list {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
    }

    .godzina-btn.big {
        width: 100% !important;
        margin: 5px 0 !important;
    }
}

@media (max-width: 480px) {
    .fotel-box, .fotel-zajety {
        width: 25px;
        height: 25px;
        font-size: 10px;
    }

    .logo img {
        max-width: 110px;
    }

    h1 { font-size: 1.6rem !important; }
}

.seans-trwa {
    background-color: #444 !important;
    color: #888 !important;
    border-color: #555 !important;
}

.seans-wkrotce {
    background-color: #d35400 !important;
    border-color: #e67e22 !important;
    color: #fff !important;
}