/* 15h Shift Timer - UNIFIED CLEAN STYLE (Default & Dark) */
.shift-timer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    padding: 0;
    /* Removed padding */
    background: transparent;
    /* Removed bg */
    border: none;
    /* Removed border */
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
}

.shift-timer-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shift-timer-value {
    font-size: 20px;
    /* Larger */
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--accent-blue);
}

/* Limit Badge - UNIFIED CLEAN STYLE (Default & Dark) */
.limit-badge {
    font-size: 16px;
    /* Larger */
    font-weight: 800;
    padding: 0;
    border-radius: 0;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Colors for transparent badges (Dark Mode default) */
.limit-green {
    color: #22c55e;
    background: transparent;
    border: none;
}

.limit-yellow {
    color: #facc15;
    background: transparent;
    border: none;
}

.limit-red {
    color: #ef4444;
    background: transparent;
    border: none;
}


/* Buttons */
.btn-large-3d {
    box-sizing: border-box;
    width: 100%;
    max-width: 340px;
    padding: 18px 20px;
    border-radius: 30px;
    /* Pill shape */
    border: none;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.btn-large-3d:active {
    transform: scale(0.92);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-open {
    background: linear-gradient(135deg, var(--accent-green) 0%, #047857 100%);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4);
}

.btn-pause {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #0369A1 100%);
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.4);
}

.btn-resume {
    background: linear-gradient(135deg, var(--accent-green) 0%, #047857 100%);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4);
}

.btn-close {
    background: rgba(244, 63, 94, 0.1);
    /* Accent Red */
    border: 1px solid rgba(244, 63, 94, 0.3);
    color: var(--accent-red);
    padding: 16px 32px;
    border-radius: 30px;
    /* Pill */
    font-size: 16px;
    font-weight: 700;
    margin-top: auto;
    margin-bottom: env(safe-area-inset-bottom, 24px);
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-close:active {
    transform: scale(0.92);
    background: rgba(244, 63, 94, 0.2);
}

.btn-tacho-edit {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    /* Soft pill */
    color: var(--text-color);
    font-size: 16px;
    font-weight: 700;
    padding: 16px 24px;
    min-height: 56px;
    width: 100%;
    max-width: 320px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.btn-tacho-edit:active {
    transform: scale(0.92);
    background: rgba(255, 255, 255, 0.1);
}

/* Pause Card */
.pause-card {
    background-color: var(--card-bg-light);
    color: var(--text-color);
    padding: 30px;
    border-radius: 32px;
    width: 100%;
    max-width: 340px;
    text-align: center;
    box-shadow: var(--shadow-strong);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border-color);
}

.floating-emoji {
    font-size: 90px;
    margin-top: 40px;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 24px rgba(250, 204, 21, 0.5));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Standard Components (Cards, Inputs, Modals) */