
.quiz-container {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
    margin: 50px auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

#quiz-content > p {
	font-size:16px;
	margin:0;
}

h2,
h3 {
    margin-bottom: 20px;
	font-size:1.3em;
	font-weight:900;
	text-align:left;
	padding: 40px 0 0 0;
	color:#555555;
}

#progress-wrapper {
    margin-bottom: 0px;
}

#progress-label {
    font-size: 13px;
    font-weight: 900;
    color: #888;
    margin-bottom: 6px;
    text-align: right;
}

#progress-bar {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

#progress-fill {
    height: 100%;
    width: 0%;
    background: #4caf50;
    transition: width 0.4s ease;
}

.fade {
    opacity: 0;
    transition: opacity 0.5s;
}

.fade.show {
    opacity: 1;
}

label {
    display: block;
    padding: 20px;
    margin-bottom: 12px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease, border 0.3s ease;
	width: auto!important;
}

label:hover {
    background-color: #d7ebf4a8;
    border-color: #38658ea8;
}

input[type="radio"],
input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
    vertical-align: middle;
    margin-top: -3px;
	width: auto;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

input[type="text"]{
	border:1px solid #ccc!important;
}

button {
    padding: 20px 40px;
    background: #4caf50;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #43a047;
}
#back-btn {
    float: left;
    background: #cccccc;
}

#navigation {
    margin-top: 30px;
    text-align: right;
}
label:has(input:is([type="radio"], [type="checkbox"]):checked) {
    background-color: #d7ebf4;
    border-color: #38658e;
    font-weight: 700;
    color: #555555;
}
.qDescription {
    color: #555555;
    margin-top: -15px;
    margin-bottom: 30px!important;
}

#user-info-form > input {
    padding: 20px;
    margin-bottom: 10px;
}
