 <style>
        body { font-family: 'Inter', sans-serif; background: #f8fafc; margin: 0; padding: 40px; color: #1e293b; }
        .admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
        h1 { margin: 0; font-weight: 800; letter-spacing: -1px; }
        .logout-btn { padding: 10px 20px; background: #ef4444; color: white; text-decoration: none; border-radius: 8px; font-weight: 600; }
        
        .table-container { background: white; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); overflow: hidden; border: 1px solid #e2e8f0; }
        table { width: 100%; border-collapse: collapse; }
        th { background: #f1f5f9; padding: 15px; text-align: left; font-size: 0.85rem; text-transform: uppercase; color: #64748b; letter-spacing: 0.05em; }
        td { padding: 15px; border-bottom: 1px solid #f1f5f9; font-size: 0.95rem; }
        tr:last-child td { border-bottom: none; }
        tr:hover { background: #fafafa; }
        
        .badge { background: #eef2ff; color: #4f46e5; padding: 4px 10px; border-radius: 6px; font-weight: 600; font-size: 0.85rem; }
        .badge1 { background: #eef2ff; color: #4f46e5; padding: 4px 10px; border-radius: 6px; font-weight: 600; font-size: 1.5rem; }
	.contact-info { font-size: 0.85rem; color: #64748b; line-height: 1.4; }
        .school-name { font-weight: 700; color: #334155; }       



	   :root {
            --primary: #6366f1; /* Delikatny fiolet/indygowy */
            --bg: #ffffff;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --surface: #f8fafc;
            --radius: 32px;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--bg);
            color: var(--text-main);
            -webkit-font-smoothing: antialiased;
        }
		
		
		.main-footer {
    background: radial-gradient(circle at 0% 0%, #f8fafc 0%, #eff6ff 100%);
    padding: 80px 20px 40px;
    margin-top: 100px;
    border-top: 1px solid #e2e8f0;
}

.btn-asp {
    display: inline-block;
    color: white;
    background-color: #6366f1;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 10px 24px;
    border-radius: 100px;
    text-decoration: none; 
    border: 2px solid #6366f1;  
    transition: all 0.2s ease;
}

.btn-asp:hover {
    color: #6366f1;
    background: transparent;
}

.hero-section {
    padding: 100px 20px 80px;
    background: radial-gradient(circle at 0% 0%, #f8fafc 0%, #eff6ff 100%);
    text-align: center;
    position: relative;
    margin-bottom:100px;
}

.hero-content {
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: #eef2ff;
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.badge1 {
    display: inline-block;
    padding: 8px 16px;
    background: #eef2ff;
    color: var(--primary);
    border-radius: 100px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}


.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.05em;
    margin-bottom: 25px;
    color: #0f172a;
}

.hero-section h1 .accent {
    color: var(--primary);
    display: block;
}

.hero-section p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 auto 40px;
}

/* DEKORACYJNE ODDZIELENIE */
.hero-divider {
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), #9333ea);
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
}

.hero-divider::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #e2e8f0, transparent);
}

@media (max-width: 768px) {
    .hero-section { padding: 80px 20px 40px; }
    .hero-section h1 { font-size: 2.5rem; }
    .hero-section p { font-size: 1.1rem; }
}





.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.footer-info p {
    color: var(--text-muted);
    max-width: 400px;
    line-height: 1.6;
}

.footer-contact h3, .footer-social h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.footer-contact i {
    width: 18px;
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    background: #fff;
    color: var(--text-main);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-5px);
    border-color: var(--primary);
}

.footer-bottom {
    max-width: 1300px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    color: #94a3b8;
    font-size: 0.9rem;
	text-align: center;
}

		.full-width-image {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    line-height: 0; 
}

.full-width-image img {
    width: 100vw; 
    object-fit: cover; 
    display: block;
        margin-bottom: 100px;
}

@media (max-width: 900px) {
    .footer-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-contact p { justify-content: center; }
    .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 20px; }
}

		
		

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Sekcja Wydziału - Miękki Zygzak */
        .dept-section {
            display: flex;
            align-items: center;
            gap: 100px;
            margin-bottom: 100px;
        }

        .dept-section:nth-child(even) {
            flex-direction: row-reverse;
        }

        /* Miękkie Foto */
        .dept-image {
            flex: 1.1;
            height: 500px;
  border-radius: 15px;
            overflow: hidden;
            background: var(--surface);
            box-shadow: 0 20px 50px rgba(0,0,0,0.04);
        }

        .dept-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
        }

        .dept-section:hover .dept-image img { 
            transform: scale(1.03); 
        }

        .dept-content {
            flex: 0.9;
        }

        .dept-content h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -0.03em;
        }

        .dept-content p {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 35px;
        }

        /* Delikatne Przyciski Godzin */
        .slots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 12px;
	      margin-top: 30px;
        }

        .slot-btn {
            background: var(--surface);
            color: var(--text-main);
            border: 1px solid transparent;
            padding: 18px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slot-btn:hover {
            background: #fff;
            border-color: var(--primary);
            color: var(--primary);
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.1);
            transform: translateY(-2px);
        }

        /* Modal - Miękki i Czysty */
        #modal-overlay {
            position: fixed; inset: 0; 
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            display: none; justify-content: center; align-items: center; z-index: 1000;
        }
        
        .modal { 
            background: #fff; 
            padding: 50px; 
            width: 90%; 
            max-width: 450px; 
            border-radius: var(--radius);
            box-shadow: 0 40px 100px rgba(0,0,0,0.08);
            text-align: center;
        }

        .modal h3 { font-size: 1.8rem; margin-bottom: 10px; }

        input { 
            width: 100%; 
            padding: 20px; 
            margin: 25px 0; 
            border: 1px solid #e2e8f0; 
            background: var(--surface);
            border-radius: 20px; 
            font-size: 1rem; 
            box-sizing: border-box;
            outline: none;
            transition: 0.3s;
        }
        
        input:focus { border-color: var(--primary); background: #fff; }

        .confirm-btn { 
            width: 100%; 
            background: var(--primary); 
            color: #fff; 
            border: none; 
            padding: 20px; 
            border-radius: 20px; 
            font-weight: 700; 
            font-size: 1.1rem; 
            cursor: pointer; 
            transition: 0.3s;
        }

        .confirm-btn:hover { opacity: 0.9; transform: scale(0.98); }

        @media (max-width: 1024px) {
            .dept-section, .dept-section:nth-child(even) { flex-direction: column; text-align: center; gap: 40px; }
            .dept-image { height: 350px; width: 100%; }
            .hero h1 { font-size: 2.5rem; }
        }
		
		
@media screen and (min-width: 2000px) {
    .container {
        max-width: 1500px; /* Zapobiega rozjechaniu się treści na całą szerokość */
        margin: 0 auto;
    }		

   }
    </style>
