body {
    font-family: Arial, sans-serif;
    background: #f4f7fb;
    margin: 0;
    color: #1f2937;
}

.navbar {
    background: #0f172a;
    padding: 15px 40px;
    color: white;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    font-weight: bold;
}

.container {
    width: 80%;
    max-width: 1100px;
    margin: 50px auto;
}

.card {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.82);
    margin-bottom: 25px;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

h1, h2, h3 {
    color: #0f172a;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

th {
    background: #0f172a;
    color: white;
    padding: 14px;
}

td {
    padding: 14px;
    border-bottom: 1px solid #e5e7eb;
}

.btn {
    background: #2563eb;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: #64748b;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="file"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
}

.form-box {
    max-width: 420px;
    margin: 60px auto;
}

.method-list {
    display: grid;
    gap: 15px;
}

.method-card {
    display: block;
    background: #f8fafc;
    padding: 18px;
    border-radius: 10px;
    text-decoration: none;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

.method-card:hover {
    background: #e0ecff;
}
/* Question styling */
.question-title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}

/* Options layout */
.option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

/* Bigger radio buttons */
.option input[type="radio"] {
    transform: scale(1.2);
}

/* Answer text */
.option span {
    font-size: 16px;
}
.option input[type="radio"] {
    width: auto;
    margin: 0;
    padding: 0;
}

.option {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 6px 0;
}

.option:hover {
    background: #f1f5f9;
    border-radius: 6px;
    padding-left: 5px;
}

.question-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

@media print {
    .btn, .navbar {
        display: none;
    }
}

.status-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

textarea {
    resize: none;        /* disables manual resizing */
}

.short-textarea {
    width: 100%;
    height: 100px;
    resize: none;
}

.scenario-textarea {
    width: 100%;
    height: 180px;
    resize: none;
}

.task-row {
    display: grid;
    grid-template-columns: 1fr 600px;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.task-row span {
    display: block;
}

.task-row .btn-sm {
    width: 90px;
    padding: 6px 8px;
    font-size: 15px;
    text-align: center;
    margin: 0;
}

.btn-sm {
    padding: 6px 10px;
    font-size: 13px;
    min-width: 80px;
    text-align: center;
}

body {
    background:
        linear-gradient(rgba(241,245,249,0.88), rgba(241,245,249,0.88)),
        url('images/hotel-bg.jpg');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    font-family: 'Segoe UI', sans-serif;
}

.dashboard-hero {
    background: linear-gradient(135deg, #ffffff, #f3f7fb);
    border-left: 6px solid #2563eb;
}

.assessment-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.assessment-table th {
    background-color: #0f172a;
    color: white;
    padding: 14px;
}

.assessment-table td {
    background: #ffffff;
    padding: 14px;
    border-bottom: none;
}

.assessment-table tr td:first-child {
    border-radius: 10px 0 0 10px;
}

.assessment-table tr td:last-child {
    border-radius: 0 10px 10px 0;
}

.status-badge {
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.status-not-started {
    background: #fee2e2;
    color: #b91c1c;
}

.status-in-progress {
    background: #ffedd5;
    color: #c2410c;
}

.status-completed {
    background: #dcfce7;
    color: #15803d;
}

.card {
    transition: 0.25s ease;
}

.card:hover {
    box-shadow: 0 10px 25px rgba(152, 173, 232, 0.85);
}

.welcome-flex{
    display:flex;
    align-items:center;
    gap:25px;
}

.welcome-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#edf4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
}

.dashboard-hero{
    background:rgba(245,249,255,0.92);
    border-left:5px solid #2563eb;
}

.dashboard-hero h2{
    font-size:38px;
    margin-bottom:8px;
    color:#0f172a;
}

.dashboard-hero p{
    color:#475569;
    font-size:17px;
}

.section-title{
    font-size:32px;
    margin-bottom:25px;
    color:#0f172a;
}

.status-pill{
    min-width: 95px;
    text-align: center;
}

.status-progress{
    background:#fff1dd;
    color:#f59e0b;
}

.status-not-started{
    background:#ffe3e3;
    color:#ef4444;
}

.status-completed{
    background:#dcfce7;
    color:#16a34a;
}

.status-pill {
    min-width: 110px;
    text-align: center;
    white-space: nowrap;
    padding: 8px 14px;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background:
        linear-gradient(rgba(241,245,249,0.80), rgba(241,245,249,0.80)),
        url('../images/hotel-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.card {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 35px;
    margin-bottom: 28px;
    box-shadow: 0 12px 30px rgba(15,23,42,0.10);
}

.status-pill {
    display: inline-block;
    min-width: 115px;
    text-align: center;
    white-space: nowrap;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.task-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.assessment-table {
    border-collapse: separate;
    border-spacing: 0 12px;
    background: transparent;
}

.assessment-table th {
    background: #0f172a;
    color: white;
    padding: 16px;
}

.assessment-table td {
    background: rgba(255,255,255,0.92);
    padding: 18px 16px;
    border-bottom: none;
    vertical-align: middle;
}

.assessment-table tr td:first-child {
    border-radius: 12px 0 0 12px;
}

.assessment-table tr td:last-child {
    border-radius: 0 12px 12px 0;
}

table th,
table td {
    text-align: center;
    vertical-align: middle;
}

table td:first-child {
    text-align: left;
}

.scenario-performance-table td:first-child {
    text-align: center;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.action-buttons .btn,
.action-buttons .btn-sm {
    width: 130px;
    text-align: center;
    white-space: nowrap;
}

@media print {
    .navbar,
    .btn {
        display: none !important;
    }

    body {
        background: white !important;
    }

    .card {
        box-shadow: none !important;
        background: white !important;
        page-break-inside: avoid;
    }
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.brand-logo img {
    height: 36px;
    width: 36px;
    object-fit: contain;
}
    