body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 1200px; /* Limit container width for large screens */
    margin: 0 auto;
    padding: 20px;
    border-radius: 5px;
    background-color: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

input[type="email"],
input[type="password"],
input[type="text"],
input[type="date"],
textarea,
select {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

button {
    padding: 10px 20px;
    background-color: #1D4527;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

/* Navbar styles */
.navbar {
    background-color: #fff; /* White background */
    color: #1D4527; /* Text color */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
}

.navbar .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.navbar .logo img {
    height: 60px; /* Adjust height of the logo */
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar ul li {
    margin-right: 20px;
}

.navbar ul li a {
    text-decoration: none;
    color: #000; /* Link color */
    padding: 10px 10px;
    transition: background-color 0.3s ease; /* Smooth transition on hover */
}

.navbar ul li a:hover {
    background-color: #1D4527; /* Light gray background on hover */
    border-radius: 5px; /* Rounded corners */
    color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        width: 90%; /* Adjust container width for smaller screens */
    }

    .navbar .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar ul {
        margin-top: 20px;
    }

    .navbar ul li {
        margin-right: 0;
    }

    .navbar ul li:last-child {
        margin-bottom: 10px;
    }

    .navbar ul li a {
        padding: 10px;
    }
}


.btn-primary {
    background-color: #fff; /* Set button background color */
    color: #1D4527; /* Set button text color */
    border: 1px solid #1D4527; /* Add border */
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #1D4527; /* Add hover effect */
    color: #fff; /* Change text color on hover */
    border: 1px solid #1D4527; /* Adjust border color on hover */
}


.title {
    font-size: 2rem; /* Adjust font size as needed */
    font-weight: bold;
}

.form-group {
    margin-bottom: 20px;
}

.required {
    color: red;
}

input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Custom CSS styles for the homepage */

.intro {
    font-size: 18px;
    color: #666;
}

.news-events {
    margin-top: 40px;
}

.event, .news {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.event h3, .news h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.event p, .news p {
    font-size: 16px;
    color: #666;
}

.about-section {
    margin-top: 40px;
}

.about-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 16px;
    color: #666;
}

/* Custom CSS styles for the alumni table */

    .table {
        width: 100%;
        margin-bottom: 1rem;
        color: #212529;
    }

    .table th,
    .table td {
        padding: 0.75rem;
        vertical-align: middle;
        align-items: center;
        border-top: 1px solid #dee2e6;
    }

    .table thead th {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6;
        background-color: #f8f9fa;
    }

    .table tbody + tbody {
        border-top: 2px solid #dee2e6;
    }

    .table .table-image img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
    }

    .table .btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
        line-height: 1.5;
        border-radius: 0.25rem;
    }

    .table .btn-primary {
        color: #fff;
        background-color: #1D4527;
        border-color: #1D4527;
    }

    .table .btn-primary:hover {
        color: #fff;
        background-color: #1D4527;
        border-color: #1D4527;
    }

    .pagination {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .pagination .page-item {
        display: inline-block;
        margin-right: 5px;
    }

    .pagination .page-item a {
        display: block;
        padding: 5px 10px;
        text-decoration: none;
        color: #333;
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 3px;
    }

    .pagination .page-item.active a {
        background-color: #1D4527;
        color: #fff;
    }

/* Add custom styles for the select element */
.form-select {
    width: 80px; /* Adjust width as needed */
    padding: .375rem .75rem; /* Add padding */
    font-size: 1rem; /* Set font size */
    line-height: 1.5; /* Set line height */
    color: #495057; /* Set text color */
    background-color: #fff; /* Set background color */
    border: 1px solid #ced4da; /* Set border */
    border-radius: .25rem; /* Add border radius */
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; /* Add transition */
}

/* Style the label for better alignment */
.form-label {
    display: block;
    margin-bottom: .5rem;
    font-weight: bold;
}

.center-btn {
    display: block;
    margin: 0 auto;
    text-align: center;
}


/* Adjust form fields for medium-sized screens */
@media (min-width: 768px) {
    .registration-form .col-md-6 {
        width: calc(50% - 15px); /* Set width of columns to 50% minus half of the desired gap */
        float: left; /* Float columns left to enable side-by-side layout */
    }

    .registration-form .col-md-6:first-child {
        margin-right: 15px; /* Add right margin to the first column */
    }

    .registration-form .col-md-6:last-child {
        margin-left: 15px; /* Add left margin to the last column */
    }
}

