@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f6f9;
}

.reservation-title {
    font-weight: 600;
    color: #2596be;
    letter-spacing: 1px;
}

.reservation-subtitle {
    color: #6c757d;
    font-size: 14px;
}

.title-divider {
    border: 0; /* Remove default border */
    height: 3px; /* Thickness */
    background-color: gray; /* Color */
    width: 80%; /* Length of the line */
    margin: 10px auto 30px auto; /* Top & bottom spacing, center */
}

.reservation-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.form-label-custom {
    font-size: 13px;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 5px;
}

.custom-input {
    border-radius: 8px;
    border: 1px solid #ced4da;
    font-size: 14px;
}

    .custom-input:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.15rem rgba(13,110,253,.15);
    }

.custom-submit-btn {
    background-color: #2596be;
    color: #ffffff;
    font-weight: 500;
    border-radius: 30px;
    padding: 10px 30px;
}

    .custom-submit-btn:hover {
        background-color: #084298;
    }
.table-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2a4d69;
    letter-spacing: 1px;
}

.table-subtitle {
    font-size: 0.95rem;
    color: #6c757d;
}

.table-divider {
    width: 120px;
    border-top: 3px solid #2a4d69;
    margin: 0 auto 25px;
}
.navbar-nav {
    margin: 0 auto; /* center horizontally */
}
.landing-container {
    margin-top: 150px;
}

    .landing-container h1 {
        font-size: 48px;
        color: #2596BE;
        font-weight: 700;
    }

    .landing-container p {
        font-size: 20px;
        color: #333;
    }

.landing-buttons a {
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 18px;
}

.dashboard-box {
    display: block;
    padding: 30px;
    background-color: #2596BE;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: transform 0.2s;
}

    .dashboard-box:hover {
        transform: scale(1.05);
        background-color: #1e7abf;
    }

    .dashboard-box h4 {
        margin-top: 10px;
    }
