/* ===============================
   NTA ENTERPRISE EXAM UI
================================ */

body {
    font-family: Arial, sans-serif;
    background: #f3f3f3;
    margin: 0;
}

/* Top Bar */
.sh-top-bar {
    background: #1e2a38;
    color: #ffffff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Timer */
#nta-timer {
    background: #d9534f;
    color: #fff;
    padding: 8px 15px;
    font-weight: bold;
    border-radius: 4px;
    font-size: 18px;
}

/* Layout */
.sh-main-container {
    display: flex;
    padding: 20px;
}

.sh-question-area {
    flex: 3;
    background: #fff;
    padding: 20px;
    margin-right: 20px;
    border-radius: 6px;
}

.sh-palette-area {
    flex: 1;
    background: #fff;
    padding: 15px;
    border-radius: 6px;
}

/* Question number circles */
.sh-question-number {
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    background: #e0e0e0;
    margin: 5px;
    cursor: pointer;
}

/* Status */
.sh-answered {
    background: #5cb85c !important;
    color: #fff;
}

.sh-not-answered {
    background: #d9534f !important;
    color: #fff;
}

.sh-review {
    background: #f0ad4e !important;
    color: #fff;
}