
body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f1018;
    color: #fff;
    display: flex;
    height: 100vh;
}

.container {
    display: flex;
    width: 100%;
    height: 100%;
}

.sidebar {
    width: 300px;
    padding: 30px 20px;
    background-color: #0f1018;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-right: 2px solid #1a1b25;
}

.sidebar h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.sidebar p {
    font-size: 14px;
    margin-bottom: 20px;
}

.glow-button {
    display: block;
    text-align: center;
    padding: 12px;
    margin-bottom: 10px;
    background-color: #00bfff;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 0 12px #00bfff;
    transition: transform 0.2s ease-in-out;
}

.glow-button:hover {
    transform: scale(1.05);
}

.logout {
    margin-top: auto;
    background-color: #00bfff;
}

.content {
    flex-grow: 1;
    background-color: #0f1018;
    position: relative;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
