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

body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff; /* Light sky-blue background */
    min-height: 100vh;
    padding-top: 60px;
}
.header {
    height: 60px !important;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}


/* Navbar Styles */
.navbar {
    background-color: #87CEEB; /* Sky blue */
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
}

.navbar-nav {
    list-style: none;
    display: flex;
    gap: 25px;
}

.navbar-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.navbar-nav a:hover {
    opacity: 0.8;
}

/* Sidebar Styles */
.sidebar {
    background-color: #e0f7fa; /* Light sky-blue */
    width: 250px;
    height: calc(100vh - 60px); /* Full height minus navbar */
    position: fixed;
    left: 0;
    top: 60px; /* Below navbar */
    padding: 20px;
    overflow-y: auto;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.menu {
    list-style: none;
}

.menu li {
    margin-bottom: 12px;
}

.menu a {
    color: #333;
    text-decoration: none;
    padding: 12px 15px;
    display: block;
    border-radius: 5px;
    transition: all 0.3s;
    background-color: rgba(255,255,255,0.3);
}

.menu a:hover {
    background-color: #87CEEB;
    color: white;
    transform: translateX(5px);
}

/* Main Content Styles */
.main-content {
    margin-left: 250px; /* Same as sidebar width */
    margin-top: 60px; /* Same as navbar height */
    padding: 30px;
    min-height: calc(100vh - 60px);
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Footer Styles */
.footer {
    background-color: #87CEEB;
    color: white;
    text-align: center;
    padding: 15px;
    position: fixed;
    bottom: 0;
    width: 100%;
}