﻿body {
}
/* =========================
   Error Messages
========================= */
.error-message,
.alert.alert-danger {
    color: #b00020;
    background-color: #fdd;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #f5c2c7;
    border-radius: 4px;
}

/* =========================
   Home Page
========================= */
.home-container {
    max-width: 450px;
    margin: 2rem auto;
    padding: 0 1rem;
    text-align: center;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #444;
    background-color: #ecf0f1;
}

.home-logo {
    display: block;
    max-width: 300px;
    max-height: 300px;
    margin: 5px auto 0;
}

.home-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.home-description {
    margin-top: 5px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #111111;
}

/* Fixed spelling */
.home-details {
    font-size: 0.75rem;
    line-height: 1.4;
    color: #111111;
}

/* =========================
   Text Colors
========================= */
.text-cadet {
    color: forestgreen;
}

.text-lightseagreen {
    color: lightseagreen;
    font-weight: bold;
}

.text-dodgerblue {
    color: dodgerblue;
    font-weight: bold;
}

.text-indianred {
    color: indianred;
    font-weight: bold;
}

.text-cornflowerblue {
    color: cornflowerblue;
    font-weight: bold;
}

/* =========================
   Login Page
========================= */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background-color: #ecf0f1;
}

.login-form {
    width: 100%;
    max-width: 400px;
    padding: 1rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .login-form h3 {
        margin-bottom: 1.5rem;
        text-align: center;
        color: #333;
    }

.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fafafa;
}

    .input-group i {
        margin-right: 0.5rem;
        color: #888;
    }

.input-field {
    flex: 1;
    padding: 0.25rem;
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 1rem;
}

/* =========================
   Buttons
========================= */
button[type="submit"] {
    padding: 0.75rem;
    font-size: 1rem;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

    button[type="submit"]:hover {
        background-color: #0056b3;
    }

.transfer-btn {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

/* =========================
   SweetAlert / JS Runtime
========================= */
.swal-title-small {
    font-size: 14px !important;
    font-family: Calibri !important;
    font-weight: bold !important;
    line-height: 1 !important;
}

/* =========================
   Tables
========================= */
.table thead.custom-warning th {
    background-color: lightblue;
    color: black;
}

/* =========================
   Calendar
========================= */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.day-normal {
    background-color: #f8f9fa;
    color: black;
}

.day-work {
    background-color: #dc3545;
    color: white;
}

.day-saturday {
    background-color: #198754;
    color: white;
}

.day-sunday {
    background-color: #dc3545;
    color: white;
}

.day-selected {
    outline: 3px solid #ffc107;
    transform: scale(1.05);
}