/* 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;
    width: auto;
}

.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;
    width: 100%;
}

.container-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
/* Scrollable table container */
.table-responsive {
    padding: 20px;
}

.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;
}

.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 */
}

.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;
}