/* =========================
   TOP NAV BAR
========================= */

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: #1f1f1f;
    color: white;
    border-bottom: 1px solid #333;
}

.topbar-left {
    font-size: 14px;
}

.topbar-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* =========================
   ROLE BADGE
========================= */

.role-badge {
    margin-left: 8px;
    padding: 2px 6px;
    background: #444;
    color: #ccc;
    border-radius: 4px;
    font-size: 12px;
}

/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-block;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 4px;
    text-decoration: none;
    color: white;
    cursor: pointer;
}

.btn-admin {
    background: #444;
    color: white;
}

.btn-admin:hover {
    background: #666;
}

.btn-logout {
    background: #333;
    color: white;
}

.btn-home {
    background: #007BFF;
    color: white;
}

.btn-logout:hover {
    background: #555;
}

body{
    font-family: Arial, sans-serif;
    background-color: #000000;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
    text-align: center;
}

p {
    color: #FFFFFF;
    text-align: center;
    font-size: 18px;
}

label {
    color: #FFFFFF;
    font-size: 16px;
}

video {
    display: block;
    margin: 20px auto;
    max-width: 80%;
    border: 2px solid #FFFFFF;
    border-radius: 10px;
}

li {
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 10px;
}


form {
    color: #FFFFFF;
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
}