
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #0f0f0f;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.menu-container {
    background: #1a1a1a;
    padding: 40px 60px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
    text-align: center;
    width: 420px;
}

h1 {
    margin-bottom: 20px;
    font-size: 28px;
    letter-spacing: 1px;
}

.menu-btn {
    display: block;
    width: 100%;
    padding: 14px;
    margin: 12px 0;
    background: #2d7dff;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
}

.menu-btn:hover {
    background: #1b5fcc;
}

.logout-btn {
    background: #ff3b3b;
}

.logout-btn:hover {
    background: #cc2f2f;
}

.footer {
    margin-top: 20px;
    font-size: 13px;
    opacity: 0.6;
}

.error-message{
    color: red;
}
.success-message{
    color: rgb(0, 212, 0);
}
#tempMessage{
    /* color: rgb(180, 180, 180); */
    font-weight: bold;
    font-size: large;
}