:root {
    --primary-color: #0a192f;
    --accent-color: #0077b6;
    --background-color: #f4f6f8;
    --text-color: #333;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.logo {
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    object-fit: cover;
}

.notice-board {
    background: #f8f9fa;
    padding: 1rem;
    border-left: 5px solid #0d6efd;
    margin-bottom: 1rem;
}

#notice-heading {
    text-align: center;
}

.footer {
    background-color: #0a4275;
    color: white;
    padding: 1rem 0;
    margin-top: auto;
}

.social-icons a {
    color: white;
    margin: 0 10px;
}

.sticky-top {
    z-index: 1030;
}

.navbar {
    background-color: #0a4275 !important;
}

.navbar .nav-link, .navbar .navbar-brand, .navbar-toggler-icon {
    color: white !important;
}

.navbar .nav-link:hover {
    text-decoration: underline;
}

.edit-icon {
    font-size: 1rem;
    color: gray;
    cursor: pointer;
    transition: color 0.3s ease;
}

.edit-icon:hover {
    color: #007bff;
}

.delete-icon {
    font-size: 1rem;
    color: #d41414;
    cursor: pointer;
    transition: color 0.3s ease;
}

.delete-icon:hover {
    color: red;
}

.eye-icon {
    font-size: 1rem;
    cursor: pointer;
    color: #0056b3;
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.eye-icon:hover {
    color: #007bff;
    transform: scale(1.1);
}