* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    /*background: skyblue;*/
    background: #3BA6E7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background: yellow  ;
    width: 350px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.login-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.input-box {
    margin-bottom: 15px;
}

.input-box label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.input-box input {
    width: 100%;
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 8px;
    outline: none;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: green;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.login-btn:hover {
    background-color: green;
}

.logo-box {
    text-align: center;
    margin-bottom: 15px;
}

.logo-box img {
    width: 100px;      /* Change size as needed */
    height: auto;
    /*border-radius: 100%; /* Optional: circle logo */
}

/* ================= HEADER ================= */
.top-header {
    height: 60px;
    background: #87CEEB;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.top-header h4 {
    color: #fff;
    font-weight: 600;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-box {
    padding: 6px 12px;
    width: 220px;
    border-radius: 5px;
    border: none;
}

.profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}


/* ================= SIDEBAR ================= */
.sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    width: 230px;
    height: calc(100vh - 60px);
    background: #FFFF00;
    border-right: 1px solid #ddd;
    padding-top: 20px;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    margin-bottom: 5px;
}

.menu-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    border-radius: 5px;
}

.menu-list li a:hover {
    background: #228B22;
}

.logout {
    color: #c62828;
    font-weight: 600;
}


/* ================= MAIN CONTENT ================= */
.main-content {
    margin-left: 240px;
    margin-top: 80px;
    padding: 20px;
}
