@charset "utf-8";
/* CSS Document */
 <style>
        body {
            font-family: 'Century Gothic', sans-serif;
            display: flex;
            flex-direction: column;
            min-height: 100vh; /* Ensure the body takes at least the full height of the viewport */
        }
        .past-records {
            padding: 20px;
            background-color: #f8f9fa; /* Light background for contrast */
            height: 100%; /* Fill the vertical space */
            overflow-y: auto; /* Enable vertical scrolling */
        }
        .image-container {
            position: relative;
            overflow: hidden;
            height: auto; /* Fill the vertical space */
        }
        .image-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 10px;
            text-align: center;
        }
        .booking-section {
            padding: 20px;
            height: 100%; /* Fill the vertical space */
        }
        .btn-book {
            background-color: blue;
            color: white;
        }
        .column {
            display: flex;
            flex-direction: column;
            height: 100vh; /* Ensure all columns are the same height */
        }
        .navbar {
            background: rgba(76, 111, 86, 0.70);
        }
        .navbar-brand img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
        }
        .nav-link {
            color: white !important;
        }
        .dropdown-menu {
            background: rgba(255, 255, 255, 0.70);
        }
        .dropdown-item {
            color: black !important;
        }
        .footer {
            background: rgba(77, 112, 86, 0.7);
            padding: 50px 30px;
            color: white;
            border-top: 1px solid #D9D9D9;
            margin-top: auto; /* Push the footer to the bottom */
        }
        .footer .profile-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
        }
        .footer .social-icons a {
            color: white;
            font-size: 24px;
            margin-right: 15px;
        }
        .footer a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }
        .footer a:hover {
            color: white;
        }
    </style>
