/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Navbar styles */
.navbar {
    background-color: #25542A; /* Green background */
    padding: 15px 0;
}

.container-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-left {
    display: flex;
    align-items: center; /* Center align logo and text */
}

.navbar-left .logo {
    height: 60px;
    margin-right: 15px; /* Spacing between logo and text */
}

.university-info {
    color: white; /* Text color for university name and title */
}

.university-name {
    font-size: 16px; /* Font size for university name */
}

.navbar-title {
    color: white;
    font-size: 2rem; /* Font size for CATPAWS title */
    font-weight: bold;
    margin: 0; /* Remove default margin */
}

/* Main container for form */
.container {
    width: 80%;
    margin: auto;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 20px;
}

h2 {
    text-align: center;
    color: #2c3e50;
}

h3 {
    text-align: center;
    color: #e74c3c;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

label {
    display: block;
    margin-right: 15px;
    width: 220px;
    font-weight: bold;
    color: #34495e;
}

select,
input[type="text"],
input[type="radio"] {
    width: calc(100% - 230px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

button {
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    margin: 20px auto;
}

button:hover {
    background-color: #2980b9;
}

.required {
    color: #e74c3c;
}
/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Navbar styles */
.navbar {
    background-color: #25542A; /* Green background */
    padding: 15px 0;
}

.container-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-left {
    display: flex;
    align-items: center; /* Center align logo and text */
}

.navbar-left .logo {
    height: 60px;
    margin-right: 15px; /* Spacing between logo and text */
}

.university-info {
    color: white; /* Text color for university name and title */
}

.university-name {
    font-size: 16px; /* Font size for university name */
}

.navbar-title {
    color: white;
    font-size: 2rem; /* Font size for CATPAWS title */
    font-weight: bold;
    margin: 0; /* Remove default margin */
}

/* Main container for form */
.container {
    margin: auto;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 20px;
}

h2 {
    text-align: center;
    color: #2c3e50;
}

h3 {
    text-align: center;
    color: #e74c3c;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

label {
    display: block;
    margin-right: 15px;
    width: 220px;
    font-weight: bold;
    color: #34495e;
}

select,
input[type="text"],
input[type="radio"] {
    width: calc(100% - 230px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

button {
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    margin: 20px auto;
}

button:hover {
    background-color: #2980b9;
}

.required {
    color: #e74c3c;
}

/* Scrollable table container */
.table-responsive {
    padding: 20px;
}
.container-icon {
    display: flex;
    align-items: flex-start;
}
.info-list {
    list-style-type: none; /* Remove default list style */
    margin-left: 10px;
}
.info-list li {
    margin: 5px 0; /* Add some space between items */
}
.info-list li:before {
    content: '\2022'; /* Unicode for bullet dot */
    color: black; /* Change bullet color here */
    font-size: 20px; /* Adjust bullet size */
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.info-icon {
    color: #007BFF; /* Change icon color */
    margin-right: 10px; /* Add space between icon and text */
}
.icon-box {
    margin-right: 20px; /* Space between the icon and the list */
    font-size: 30px; /* Adjust icon size */
    color: #007BFF; /* Change icon color */
}

.text-button {
    background: none;  /* No background */
    border: none;      /* No border */
    color: darkgreen;       /* Text color */
    cursor: pointer;   /* Pointer cursor on hover */
    padding: 0;       /* Remove padding */
    font: inherit;    /* Inherit font styles */
}
.load-more-btn {
    background-color: darkgreen; /* Dark green background color */
    color: white; /* White text color */
    border: none; /* No border */
    padding: 10px 20px; /* Padding for size */
    border-radius: 8px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 16px; /* Font size */
    transition: background-color 0.3s ease; /* Smooth transition */
}

.load-more-btn:hover {
    background-color: green; /* Lighter green on hover */
}
.pagination {
    display: inline-flex;
    gap: 8px; /* Adjust spacing between page numbers */
    align-items: center;
}

.page-link {
    color: darkgreen;
    text-decoration: none;
    background: none;
    border: none;
    font-weight: normal;
    cursor: pointer;
    padding: 5px 10px;
}

.page-link:hover {
    text-decoration: underline;
}

.current-page {
    font-weight: bold;
    color: darkgreen; /* Only bold and color for the current page */
    padding: 5px 10px;
    border: 1px solid darkgreen; /* Border around the current page */
    border-radius: 5px;
    background-color: whitesmoke; /* Light background for visibility */
}

.search-bar {
    margin-bottom: 20px;
    max-width: 300px;
}

