body { background-color: #1e1e1e; color: #ffffff; overflow-x: hidden; font-family: 'Segoe UI', sans-serif; }
.panel { background-color: #2b2b2b; border: 1px solid #444; border-radius: 8px; height: 92vh; overflow-y: auto; }
.draggable { cursor: grab; }
.draggable:active { cursor: grabbing; }
.drag-over { border-top: 2px dashed #0d6efd !important; }
.agenda-item { transition: 0.2s; border-bottom: 1px solid #3d3d3d !important; }
.agenda-active { border-left: 4px solid #0d6efd !important; background-color: #333 !important; font-weight: bold; }
.sub-item { font-size: 0.9rem; padding-left: 2.5rem !important; background-color: #252525 !important; }
.timer-display { font-size: 3.5rem; font-family: monospace; font-weight: bold; text-align: center; }
.queue-item { background-color: #3a3a3a; border-left: 4px solid #6c757d; }
.queue-item.ad-vocem { border-left-color: #ffc107; }
.queue-item.wniosek { border-left-color: #dc3545; }
.stempel { font-size: 0.75rem; color: #adb5bd; }
.delete-btn { opacity: 0.3; transition: 0.3s; cursor: pointer; }
.delete-btn:hover { opacity: 1; color: #dc3545; }
.action-icon { opacity: 0.5; cursor: pointer; transition: 0.2s; }
.action-icon:hover { opacity: 1; color: #0d6efd; }
.number-badge { color: #8a8a8a; font-weight: bold; margin-right: 8px; display: inline-block; min-width: 25px; }
/* login screen styles */
/*.login-body {
    background: radial-gradient(circle at top left, #0e5454, transparent 50%),
                radial-gradient(circle at bottom right, #083636, transparent 50%),
                #041a1a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}*/

.wave-login-body {
    background-color: #041a1a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.waves {
    position: absolute;
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 150px;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

@keyframes move-forever {
    0% { transform: translate3d(-90px,0,0); }
    100% { transform: translate3d(85px,0,0); }
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.glass-input {
    background: linear-gradient(180deg, rgba(14, 84, 84, 0.4), rgba(4, 26, 26, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #4dd0e1;
    border-radius: 16px;
    padding: 12px 20px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.glass-input::placeholder {
    color: rgba(77, 208, 225, 0.5);
}

.glass-input:focus {
    background: linear-gradient(180deg, rgba(14, 84, 84, 0.6), rgba(4, 26, 26, 0.8));
    border-color: #4dd0e1;
    color: #ffffff;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.3), 0 0 10px rgba(77, 208, 225, 0.2);
    outline: none;
}

.glass-btn {
    background: linear-gradient(90deg, #0e5454, #158080);
    border: none;
    color: #ffffff;
    border-radius: 16px;
    padding: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}

.glass-btn:hover {
    background: linear-gradient(90deg, #158080, #1eb3b3);
    box-shadow: 0 5px 15px rgba(21, 128, 128, 0.4);
    transform: translateY(-2px);
}

.glass-input:-webkit-autofill,
.glass-input:-webkit-autofill:hover, 
.glass-input:-webkit-autofill:focus, 
.glass-input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #4dd0e1;
}