/* management style quiz css */

body {
    font-family: 'Arial', 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%);

}

.app-title {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.6;
    opacity: 0.9;
    margin-left: auto;
    margin-right: auto;
}

.begin-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    font-weight: 600;
}

.begin-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.6);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.question-number {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.question-text {
    line-height: 1.4;
}

.answer-option {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.answer-option:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 107, 53, 0.8);
    transform: translateY(-2px);
}

.answer-option.selected {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(247, 147, 30, 0.3));
    border-color: #ff6b35;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.answer-option label {
    font-size: 1.1rem;
    cursor: pointer;
    display: block;
    font-weight: 500;
}

.nav-btn {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.5);
}

.nav-btn:disabled {
    background: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.next-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.next-btn:hover {
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.5);
}

/* Results Screen */
.results-screen {
    display: none;
    text-align: center;
}

.result-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-style {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffd700;
}

.result-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: left;
}

.result-characteristics {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
    backdrop-filter: blur(10px);
}

.characteristics-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffd700;
}

.characteristics-list {
    list-style: none;
}

.characteristics-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.characteristics-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.restart-btn {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

.restart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.5);
}