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

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

/* Navbar styles */
header {
    background-color: #2bb2f0;
    color: white;
    padding: 15px 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav .dashboard {
  display: flex;
  flex-direction: column;
}

nav h1 {
    font-size: 24px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* Dashboard styles */
.container {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
}

.student-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
    margin: 20px;
    width: 25vw;
}

h2 {
    color: #4CAF50;
    font-size: 20px;
    margin-bottom: 15px;
}

/* Footer styles */
footer {
    background-color: #df3333;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 30px;
}

footer p {
    font-size: 14px;
}

.dynamic-color {
    color: #4b20e7; /* Initial text color */
    font-weight: bold; /* Bold text */
}

.student-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.student-card img {
    width: 50px; /* Adjust the size as needed */
    height: auto;
    border-radius: 50%; /* Optional: makes the image circular */
    margin-right: 15px;
}

.student-info {
    flex-grow: 1;
}

.student-name {
    font-family: Arial, sans-serif;
    color: #4CAF50;
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
}

dfs
.students-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.row-container {
    display: flex;
    gap: 20px;
    justify-content: space-around;
}

.student-container {
    width: 18%;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}
.student-container img {
    margin-bottom: 10px;
    border-radius: 50%;
}
.student-name {
    font-family: Arial, sans-serif;
    color: #4CAF50;
    font-weight: bold;
}

/* Resetting the list styles */
.college-details {
    list-style-type: none; /* Remove default bullets */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}

.college-title {
    font-family: Georgia, 'Times New Roman', serif;
    color: #5be41b; 
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px; /* Add spacing between lines */
}

.college-subtitle {
    font-family: Arial, sans-serif;
    color: #2b56af; /* Blue color */
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px; /* Add spacing between lines */
}

.college-tagline {
    font-family: 'Courier New', Courier, monospace;
    color: #e4f123; /* Red color */
    font-size: 14px;
    font-style: italic;
    margin-bottom: 5px; /* Add spacing between lines */
}

.certification {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #000000; /* Black color */
    font-size: 16px;
    margin-top: 10px;
    font-weight: bold;
}

a:link{
    text-decoration: none;
}

footer.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f02b3c; /* Light background color */
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Adds subtle shadow */
    z-index: 1030; /* Ensures it stays above other elements */
}