/* Root palette (adjust to exact brand colors if needed) */
:root {
    --primary: #1f3c88;       /* deep blue */
    --secondary: #f39c12;     /* warm gold/orange */
    --accent: #16a085;        /* teal accent */
    --bg: #f5f7fa;            /* soft background */
    --card-bg: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --shadow: rgba(0, 0, 0, 0.08);
}

/* Base layout */
body {
    
    background: var(--bg);
    color: var(--text-dark);
}

/* Dashboard container */
.dashboard {
    max-width: 800px;
    margin: auto;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px var(--shadow);
    position: relative;
    overflow: hidden;
}

/* Decorative accent strip */
.dashboard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

/* Header */
.dashboard h2 {
    margin-top: 0;
    font-weight: 600;
    color: var(--primary);
}

#userName {
    color: var(--secondary);
}

/* Info section */
.info {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(31, 60, 136, 0.05);
}

.info p {
    margin: 0.6rem 0;
    font-size: 0.95rem;
}

.info label {
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 6px;
}

.info span {
    color: var(--text-light);
}

/* Link styling */
.link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--accent);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.25s ease;
}

.link:hover {
    color: var(--secondary);
    text-decoration: underline;
    transform: translateX(2px);
}

/* Result message */
#manualResult {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    background: rgba(22, 160, 133, 0.1);
    color: var(--accent);
    font-weight: 500;
}

/* Hidden utility */
.hidden {
    display: none;
}
/* Progress bar */
.progress-container {
	margin-top: 20px;
	margin-right: 10px;
}
.progress-bar {
	width: 100%;
	height: 20px;
	background: #ddd;
    box-shadow: 0 10px 25px var(--shadow);
	border-radius: 8px;
	border-color: #fff;
	overflow: hidden;
}
#progressFill {
	height: 100%;
	background: limegreen;
	width: 0%;
}