body {
    font-family: Arial, sans-serif;
    background-color: #555;
    color: #fff;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    height: 100vh;
    overflow: hidden;
    background-color: #333;
}

.sidebar {
    width: 300px;
    background-color: #555;
    padding: 20px;
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    z-index: 2;
    overflow-y: auto;
    transition: left 0.3s ease;
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.menu-toggle {
    font-size: 30px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 3;
}

.sidebar h3 {
    color: #fff;
    margin-bottom: 20px;
}

.green-button,
.red-button,
.pink-button,
.orange-button,
.logout-button,
.yellow-button {
    width: 80%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 10px;
    color: #fff;
    transition: background-color 0.3s ease;
}

        .orange-button {
    background-color: #ff7300; 
}

.green-button {
    background-color: #28a745;
}

.red-button {
    background-color: #dc3545;
}

.yellow-button {
    background-color: #f1e20d;
}

.pink-button {
    background-color: #ffc0cb; 
}

.logout-button {
    background-color: #007BFF;
}

.main-content {
    flex-grow: 1;
    padding: 20px;
    background-color: #555;
    margin-left: 320px;
    height: 100vh;
    box-sizing: border-box;
    text-align: left;
}

.main-content h2 {
    color: #fff;
    margin-top: 0;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #00ccff;
    border-radius: 4px;
    box-sizing: border-box;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background-color: #a5a5a5;
    color: #fff;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #000;
}

button[type="submit"]:focus {
    outline: none;
}

@media (max-width: 600px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .sidebar {
        width: 80%;
        left: -80%;
    }

    .sidebar.active {
        left: 0;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 400px) {
    .sidebar {
        width: 100%;
        left: -100%;
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        width: 100%;
        padding-right: 20px;
    }
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 4;
}

.overlay .loader {
    width: 100px;
    height: 100px;
}

@media (min-width: 430px) {
    .sidebar {
        left: 0;
    }
}

@media (max-width: 430px) {
    .sidebar {
        left: -100%;
    }
}

@media only screen and (min-width: 768px) {
    .sidebar {
        left: 0;
    }
    #menuToggle {
        display: none;
    }
}

.sidebar {
    position: fixed;
    top: 0;
    left: -350px;
    width: 250px;
    height: 100%;
    background-color: #333;
    transition: left 0.3s ease;
}

.sidebar.active {
    left: 0;
}



.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(236, 230, 230, 0.473);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;

}

.loader {
    width: 105.5px;
    height: 105.5px;
}

.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#menuToggle {
    display: none;
    width: 100%;
    padding: 10px 0;
    background-color: #333;
    border: none;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1000;
    border-radius: 0 0 10px 10px;
}

#menuToggle svg {
    display: block;
    margin: 0 auto;
    max-width: 300px;
}

#menuToggle rect {
    fill: white;
}



@media (max-width: 650px) {
    #menuToggle {
        display: block;
    }

    .main-content {
        padding-top: 0px;
    }
}