/* ideal work environment quiz css */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.app-container {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.9) 0%, rgba(42, 82, 152, 0.9) 50%, rgba(30, 60, 114, 0.9) 100%);
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Welcome Screen */
.welcome-screen {
    font-size: 1.2rem;
    color: #e0e0e0;
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.welcome-screen h1 {
    background: linear-gradient(45deg, #fff, #a8d8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.welcome-screen p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

.begin-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(238, 90, 36, 0.3);
}

.begin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(238, 90, 36, 0.4);
}

/* Quiz Screen */
.quiz-screen {
    animation: slideIn 0.6s ease-out;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.2);
    height: 8px;
    border-radius: 20px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    height: 100%;
    border-radius: 20px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.question-counter {
    text-align: center;
    margin-bottom: 20px;
    opacity: 0.8;
    font-size: 1.1em;
}

.question {
    font-size: 1.4em;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
    line-height: 1.4;
}

.answers {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.answer-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 20px 25px;
    border-radius: 15px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    backdrop-filter: blur(5px);
}

.answer-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(5px);
}

.answer-btn.selected {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border-color: #ff6b6b;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

/* Navigation Buttons */
.navigation {

}

.nav-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    opacity: 0.9;
}

.nav-btn:hover {
    opacity: 1;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.3);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.next-btn {
    background: linear-gradient(45deg, #00b894, #00a085);
}

.next-btn:hover {
    box-shadow: 0 6px 15px rgba(0, 184, 148, 0.3);
}

/* Results Screen */
.results-screen {
    display: none;
    text-align: center;
    animation: slideIn 0.6s ease-out;
}

.results-screen h1 {
    font-size: 2.2em;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #a8d8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.result-type {
    font-size: 1.8em;
    margin-bottom: 30px;
    color: #ff6b6b;
    font-weight: 600;
}

.result-description {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.result-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.result-details h3 {
    color: #a8d8ff;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.result-details ul {
    list-style: none;
    text-align: left;
}

.result-details li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    opacity: 0.9;
}

.result-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00b894;
    font-weight: bold;
}

.restart-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    color: white;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.restart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
}