/* General Body Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
}

/* Card Styling */
.card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    padding: 1.5rem;
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Typography */
.section-title { color: #1e3a8a; }
.role-title { color: #1e40af; }
.staff-name { color: #374151; }
.shift-time {
    background-color: #e0f2fe;
    color: #0c4a6e;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 500;
}



#live-clock-container {
    background-color: #111827; /* Near Black */
    color: #f3f4f6;
    padding: 0.5rem 1.25rem;
    border-radius: 0.25rem;
    text-align: center;
    border: 1px solid #4b5563; /* Gray border */
}

#live-time {
    font-size: 1.75rem;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #ffffff; /* White */
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
}

#live-date {
    font-size: 0.8rem;
    color: #d1d5db; /* Lighter gray for date */
    margin-top: 0.25rem;
}
