/* public/styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f5f6fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background: white;
    padding: 40px 60px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#userInfo {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

button {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin: 5px;
    transition: background 0.3s, color 0.3s;
}

#loginBtn {
    background-color: #0078d4;
    color: white;
}

#loginBtn:hover {
    background-color: #005a9e;
}

#logoutBtn {
    background-color: #e81123;
    color: white;
    display: none; /* hide initially */
}

#logoutBtn:hover {
    background-color: #a80000;
}

#controlPanelBtn {
    background-color: #107c10;
    color: white;
    display: none;
}

#controlPanelBtn:hover {
    background-color: #0b5c0b;
}

#appFrame {
    display: none;
    width: 80vw;
    height: 70vh;
    margin-top: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
}
