@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap");

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-size: inherit;
}

body {
	font-family: "Noto Sans", sans-serif;
	background: #f5f5f5;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.quiz {
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	width: 600px;
	max-width: 95vw;
}

.title {
	font-size: 1.5rem;
	text-align: center;
	margin-bottom: 1rem;
}

.hidden {
	display: none;
}

.quiz-submit {
	background-color: #8e44ad;
	color: white;
	border: none;
	padding: 10px;
	margin-top: 10px;
	cursor: pointer;
	width: 100%;
	text-align: center;
}

.quiz-submit:hover {
	background-color: #732d91;
}

textarea {
	width: 100%;
	height: 100px;
	margin-top: 10px;
	padding: 5px;
	border-radius: 5px;
	border: 1px solid #ccc;
}

#results-content {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.5;
}

.quiz-submit {
    margin-top: 15px;
}

#progress-container {
    position: relative;
    width: 100%;
    height: 20px;
    background-color: #ddd;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

#progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #8e44ad, #9b59b6);
    transition: width 0.6s ease-in-out;
    border-radius: 10px;
}

#progress-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    line-height: 20px;
    color: white;
    font-weight: bold;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

