/* Employee Portal Styles - Boulevard Theatres */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

/* ==================== LOGIN SCREEN ==================== */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.logo-section {
    margin-bottom: 2rem;
}

.logo-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.logo-section h1 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.logo-section p {
    color: #666;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

#employeePin {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 0.5rem;
    margin-bottom: 1.5rem;
    background: white;
}

#employeePin:focus {
    outline: none;
    border-color: #667eea;
}

.pin-keypad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: 250px;
    margin: 0 auto;
}

.pin-keypad button {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 12px;
    background: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pin-keypad button:hover {
    background: #f8f9fa;
    border-color: #667eea;
    transform: translateY(-2px);
}

.pin-keypad button:active {
    transform: translateY(0);
}

.clear-btn {
    background: #e74c3c !important;
    color: white !important;
    border-color: #e74c3c !important;
}

.clear-btn:hover {
    background: #c0392b !important;
}

.login-btn {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: white !important;
    border-color: transparent !important;
}

.login-btn:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.login-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.login-footer p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.theater-time {
    color: #667eea;
    font-weight: 600;
    font-size: 1rem;
}

/* ==================== DASHBOARD CONTAINER ==================== */
.dashboard-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ==================== EMPLOYEE HEADER ==================== */
.employee-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
}

.employee-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.employee-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.employee-info h2 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.employee-info span {
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theater-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.current-time {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

.logout-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logout-btn:hover {
    background: #c0392b;
    transform: translateY(-1px);
}

/* ==================== TIME CLOCK SECTION ==================== */
.time-clock-section {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.clock-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    text-align: center;
}

.clock-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.status-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #95a5a6;
    position: relative;
}

.status-indicator.clocked-in {
    background-color: #2ecc71;
    animation: pulse 2s infinite;
}

.status-indicator.clocked-out {
    background-color: #e74c3c;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.status-text h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.status-text p {
    color: #666;
    font-size: 1rem;
}

.clock-button-container {
    margin: 2rem 0;
}

.clock-btn {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.clock-btn i {
    font-size: 2rem;
}

.clock-in {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

.clock-in:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.4);
}

.clock-out {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.clock-out:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

.shift-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.shift-detail {
    text-align: center;
}

.shift-detail label {
    display: block;
    color: #666;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.shift-detail span {
    color: #333;
    font-size: 1.2rem;
    font-weight: 700;
}

/* ==================== QUICK ACTIONS ==================== */
.quick-actions {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-actions h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.action-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.action-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.schedule-icon { background: linear-gradient(135deg, #4834d4, #686de0); }
.availability-icon { background: linear-gradient(135deg, #ff6b6b, #ee5a24); }
.shifts-icon { background: linear-gradient(135deg, #ff9ff3, #f368e0); }
.timeoff-icon { background: linear-gradient(135deg, #00d2d3, #54a0ff); }

.action-content h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.action-content p {
    color: #666;
    font-size: 0.9rem;
}

/* ==================== SCHEDULE & TIME ENTRIES SECTIONS ==================== */
.schedule-section,
.time-entries-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-section h3,
.time-entries-section h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.schedule-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.schedule-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border-left: 4px solid #667eea;
}

.schedule-card h4 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.schedule-time {
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
}

.schedule-details {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.time-entries {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.time-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.time-entry:last-child {
    border-bottom: none;
}

.entry-info h5 {
    color: #333;
    margin-bottom: 0.25rem;
}

.entry-info p {
    color: #666;
    font-size: 0.85rem;
}

.entry-time {
    text-align: right;
    font-weight: 600;
    color: #333;
}

/* ==================== MODALS ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    margin: 5% auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-height: 85vh;
    overflow-y: auto;
}

.large-modal {
    max-width: 900px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f1f1;
}

.modal-header h2 {
    font-size: 1.5rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: rgba(0,0,0,0.1);
}

/* ==================== WEEKLY SCHEDULE ==================== */
.week-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.week-selector button {
    background: #667eea;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.week-selector button:hover {
    background: #5a6fd8;
}

.week-selector span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.weekly-schedule {
    display: grid;
    gap: 1rem;
}

.day-schedule {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
}

.day-schedule h4 {
    color: #333;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.day-schedule .shifts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.shift-item {
    background: white;
    padding: 0.75rem;
    border-radius: 6px;
    border-left: 3px solid #667eea;
}

/* ==================== AVAILABILITY FORM ==================== */
.availability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.day-availability {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
}

.day-availability h4 {
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    transform: scale(1.2);
}

.time-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.time-inputs input[type="time"] {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
}

.time-inputs input[type="time"]:disabled {
    background: #e9ecef;
    color: #6c757d;
}

/* ==================== FORM ELEMENTS ==================== */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* ==================== SHIFT BOARD ==================== */
.shift-board {
    display: grid;
    gap: 1rem;
}

.available-shift {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #28a745;
}

.shift-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.shift-header h4 {
    color: #333;
    margin: 0;
}

.pick-up-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pick-up-btn:hover {
    background: #218838;
    transform: translateY(-1px);
}

.shift-details {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==================== ALERTS ==================== */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert.warning {
    background-color: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

/* Employee Portal Alert System & Missing Styles */

/* ==================== ALERT SYSTEM ==================== */
.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    animation: slideInAlert 0.3s ease-out;
}

.alert i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.alert-info {
    background: rgba(52, 152, 219, 0.95);
    color: white;
    border-color: #3498db;
}

.alert-success {
    background: rgba(39, 174, 96, 0.95);
    color: white;
    border-color: #27ae60;
}

.alert-error {
    background: rgba(231, 76, 60, 0.95);
    color: white;
    border-color: #e74c3c;
}

.alert-warning {
    background: rgba(243, 156, 18, 0.95);
    color: white;
    border-color: #f39c12;
}

@keyframes slideInAlert {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ==================== CLOCK STATUS INDICATORS ==================== */
.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.status-active {
    background: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.3);
    animation: pulse 2s infinite;
}

.status-inactive {
    background: #95a5a6;
}

.status-break {
    background: #f39c12;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(39, 174, 96, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}

/* ==================== CLOCK BUTTON STYLES ==================== */
.clock-btn {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 200px;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.clock-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.clock-btn:active {
    transform: translateY(0);
}

.clock-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.clock-out {
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3) !important;
}

.clock-out:hover {
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4) !important;
}

/* ==================== SCHEDULE CARDS ==================== */
.schedule-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border-left: 4px solid #667eea;
    transition: transform 0.2s ease;
}

.schedule-card:hover {
    transform: translateY(-2px);
}

.schedule-time {
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.schedule-role {
    color: #333;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.schedule-duration {
    color: #666;
    font-size: 0.9rem;
}

.no-schedule {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.no-schedule i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ccc;
}

/* ==================== TIME ENTRIES ==================== */
.time-entry {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.entry-date {
    font-weight: 600;
    color: #333;
}

.entry-times {
    color: #667eea;
    font-weight: 500;
}

.entry-hours {
    color: #27ae60;
    font-weight: 600;
}

.no-entries {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.no-entries i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ccc;
}

/* ==================== ELAPSED TIME DISPLAY ==================== */
.elapsed-time {
    background: rgba(39, 174, 96, 0.1);
    border: 2px solid #27ae60;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    margin: 1rem 0;
}

.elapsed-time h4 {
    color: #27ae60;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.elapsed-time .time {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    font-family: 'Courier New', monospace;
}

/* ==================== BREAK BUTTONS ==================== */
.break-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.break-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .alert {
        position: fixed;
        top: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    .clock-btn {
        min-width: 100%;
        padding: 1.25rem;
    }
    
    .time-entry {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .schedule-card {
        padding: 1rem;
    }
}

/* ==================== CLOCK BUTTON CONTAINER ==================== */
.clock-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.break-buttons {
    display: flex;
    gap: 1rem;
}

/* ==================== STATUS TEXT STYLING ==================== */
.clock-status {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.status-text h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.status-text p {
    color: #666;
    margin: 0;
}

/* ==================== MODAL ENHANCEMENTS ==================== */
.modal {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ==================== ENHANCED HEADER ==================== */
.employee-avatar {
    background: linear-gradient(135deg, #667eea, #764ba2);
    position: relative;
}

.employee-avatar::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

/* ==================== ACTION CARDS ==================== */
.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.quick-actions {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .employee-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .header-right {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .clock-card {
        padding: 2rem 1rem;
    }

    .shift-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .action-grid {
        grid-template-columns: 1fr;
    }

    .action-card {
        flex-direction: column;
        text-align: center;
    }

    .availability-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 2% auto;
        max-height: 95vh;
    }

    .pin-keypad {
        max-width: 200px;
    }

    .form-actions {
        flex-direction: column;
    }
}



/* ==================== UTILITY CLASSES ==================== */
.hidden { display: none !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }