
/* Dashboard Layout */
.dashboard-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    grid-template-rows: auto 1fr;
    height: 100vh;
}

.dashboard-header {
    grid-column: 1 / -1;
    background: #333;
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-sidebar {
    background: #f4f4f4;
    padding: 1rem;
}

.dashboard-main {
    padding: 1rem;
}

/* Sidebar Navigation */
#sidebar-nav {
    list-style: none;
    padding: 0;
}

#sidebar-nav li {
    margin: 1rem 0;
}

#sidebar-nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

#sidebar-nav a:hover {
    color: #007bff;
}

/* Role-Specific Content */
.role-content {
    display: none; /* Hidden by default */
}

.role-content h2 {
    margin-bottom: 1rem;
}

.role-content button {
    margin-right: 1rem;
    padding: 0.5rem 1rem;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.role-content button:hover {
    background: #0056b3;
}
input, select, button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background: #28a745;
    color: #fff;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #218838;
}

#message {
    margin-top: 10px;
    color: red;
}

#test-container {
    margin-top: 20px;
}

#typing-area {
    width: 100%;
    height: 100px;
    margin-top: 10px;
}

#test-results {
    margin-top: 20px;
}