/* General Styling */
/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Specific Styling for Logo and Heading */
.logo {
    width: 150px; /* Adjust size as needed */
    height: 150px; /* Keep it square to ensure round shape */
    border-radius: 50%; /* Makes the image round */
    object-fit: cover; /* Ensures the image fits within the circle */
    margin-top: 20px; /* Adds spacing from the top of the page */
    display: block; /* Ensures proper centering */
    margin-left: auto;
    margin-right: auto;
}

.centered-title {
    margin-top: 20px; /* Adds spacing between the image and the text */
    font-size: 2rem; /* Adjust size as needed */
    color: darkgreen; /* Dark green text */
    text-align: center; /* Centers the text */
}


.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}



h3 {
    color: #333;
    margin-top: 20px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Buttons */
button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

.btn-primary {
    background-color: #007BFF;
}

.btn-danger {
    background-color: #dc3545;
}

.btn-warning {
    background-color: #ffc107;
}

.btn-success {
    background-color: #28a745;
}

.btn-info {
    background-color: #17a2b8;
}

/* Form Styling */
.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"],
input[type="file"],
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;
}

input[type="text"]:focus,
input[type="file"]:focus,
select:focus {
    border-color: #4CAF50;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th,
table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

table th {
    background-color: #f2f2f2;
}

table tr:hover {
    background-color: #f9f9f9;
}

table a {
    margin-right: 5px;
}

/* Admin Options List */
.admin-options ul {
    padding: 0;
    margin-top: 20px;
}

.admin-options ul li {
    background-color: #fff;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-options ul li a {
    font-weight: bold;
}

.admin-options ul li:hover {
    background-color: #f0f8ff;
}

/* Flash Messages */
.flash-message {
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    color: #fff;
}

.flash-success {
    background-color: #28a745;
}

.flash-error {
    background-color: #dc3545;
}

.flash-info {
    background-color: #17a2b8;
}

/* Specific styling for the Course List */
.add-course {
    margin-top: 20px;
    text-align: right;
}

.add-course a {
    padding: 10px 15px;
    font-size: 16px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.table th {
    background-color: #f2f2f2;
}

.table td {
    background-color: #fff;
}

.table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table a {
    margin-right: 5px;
}

.table a.btn {
    padding: 6px 12px;
}

/* Specific styling for Student Results */
h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.table th {
    background-color: #f2f2f2;
}

.table td {
    background-color: #fff;
}

.table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table .text-center {
    text-align: center;
    font-style: italic;
}

.table a {
    margin-right: 5px;
}

.table a.btn {
    padding: 6px 12px;
}
/* Specific styling for Student GPA */
h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.table th {
    background-color: #f2f2f2;
}

.table td {
    background-color: #fff;
}

.table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table .text-center {
    text-align: center;
    font-style: italic;
}

.table a {
    margin-right: 5px;
}

.table a.btn {
    padding: 6px 12px;
}


