/* styles.css */

/* General Styles */
        body {
            font-family: 'Quicksand', sans-serif;
            background-color: #f4f8fb;
            color: #333;
        }

        .navbar {
            background-color: #003366;
        }

        .navbar-brand {
            font-weight: bold;
            color: #fff;
            text-transform: uppercase;
            display: flex;
            align-items: center;
        }

        .navbar-brand img {
            height: 30px; /* Smaller logo size */
            width: auto;
            margin-right: 10px;
        }

        /* Epic Hero Section */
        .hero-section {
            background-image: url('https://cmsv2-assets.apptegy.net/uploads/7706/logo/8873/Warner-Stroke-02.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            height: 100px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            background-color: rgba(0, 51, 102, 0.9); /* Slight overlay */
            color: #ffffff;
            position: relative;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 51, 102, 0.6); /* Overlay effect */
        }

        .hero-section h1 {
            z-index: 1;
            font-size: 3rem;
            font-weight: 700;
            color: #ffffff;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
        }

        /* Table Styling */
        .table th {
            background-color: #003366;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .table td, .table th {
            vertical-align: middle;
            font-weight: 500;
            padding: 12px;
        }

        .table tbody tr:hover {
            background-color: rgba(0, 51, 102, 0.1);
            cursor: pointer;
            transition: background-color 0.3s ease-in-out;
        }

        /* Pagination Buttons */
        .pagination {
            justify-content: center;
            margin-top: 20px;
        }
        /* Buttons */
        .btn-primary {
            background-color: #0a4275 !important;
            border-color: #0a4275 !important;
        }
        
        .btn-primary:hover,
        .btn-primary:focus,
        .btn-primary:active {
            background-color: #083361 !important;
            border-color: #083361 !important;
        }
        .btn-outline-primary {
            color: #003366;
            border-color: #003366;
            font-weight: bold;
            padding: 10px 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-outline-primary:hover {
            background-color: #003366;
            color: white;
            transition: background-color 0.3s ease;
        }
        /* Cards */
        .card {
            background-color: #0a4275; /* Dark blue background for card */
        }
        
        .card-header {
            background-color: #083361 !important; /* Darker blue for the header */
            color: white !important;
        }
        
        .card-body {
            color: #0a4275; /* Dark blue text for card body */
        }
        
        /* List Group */
        .list-group-item {
            font-size: 1.1rem;
            color: #0a4275; /* Dark blue text */
        }
        
        .list-group-item a {
            color: #0a4275; /* Dark blue link text */
            font-weight: 500;
        }
        
        .list-group-item a:hover {
            text-decoration: underline;
            color: #083361; /* Darker blue on hover */
        }
        
        .list-group-item .btn {
            border-radius: 15px;
            border: 1px solid #0a4275; /* Dark blue border */
            color: #0a4275; /* Dark blue button text */
        }
        
        .list-group-item .btn:hover {
            background-color: #0a4275; /* Dark blue background on hover */
            color: white; /* White text on hover */
        }
        

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
        }
