/* Smart Profile Wizard Styles */

/* Fix for white-on-white dropdowns */
select option {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Add contract type styles */
.contract-options {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.contract-option {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.contract-option:hover {
    border-color: #00a8ff;
    background: rgba(0, 168, 255, 0.05);
}

.contract-option.selected {
    background: #00a8ff;
    color: #000;
    border-color: #00a8ff;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.header {
    text-align: center;
    margin-bottom: 3rem;
}

h1 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #00ccff, #0099ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.wizard-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step {
    display: none;
}

.step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-header {
    text-align: center;
    margin-bottom: 2rem;
}

.step-title {
    font-size: 1.8rem;
    color: #00a8ff;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #a0a0a0;
    font-size: 1.1rem;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.progress-fill {
    background: linear-gradient(90deg, #00ccff, #0099ff);
    height: 100%;
    width: 20%;
    transition: width 0.5s ease;
}

.situation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.situation-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.situation-card:hover {
    border-color: #00a8ff;
    background: rgba(0, 168, 255, 0.05);
    transform: translateY(-2px);
}

.situation-card.selected {
    border-color: #00a8ff;
    background: rgba(0, 168, 255, 0.1);
}

.situation-icon {
    font-size: 2rem;
    color: #00a8ff;
    margin-bottom: 1rem;
}

.situation-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.situation-description {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.suggestions-container {
    background: rgba(0, 168, 255, 0.1);
    border: 1px solid rgba(0, 168, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.suggestions-title {
    color: #00a8ff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.suggestion-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.suggestion-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.suggestion-chip {
    background: rgba(0, 168, 255, 0.2);
    color: #00a8ff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 168, 255, 0.3);
}

.suggestion-chip:hover {
    background: rgba(0, 168, 255, 0.3);
    transform: translateY(-1px);
}

.suggestion-chip.selected {
    background: #00a8ff;
    color: #000;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ffffff;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00a8ff;
    box-shadow: 0 0 0 2px rgba(0, 168, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.selected-skills {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.selected-skills h4 {
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.selected-skill {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin: 0.25rem;
    display: inline-block;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.nav-btn:hover {
    background: rgba(0, 204, 255, 0.2);
    border-color: #00ccff;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: #00a8ff;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #0095e6;
    transform: translateY(-2px);
}

.experience-template {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.template-title {
    font-weight: 600;
    color: #00a8ff;
    margin-bottom: 0.5rem;
}

.template-description {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.template-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.template-skill {
    background: rgba(0, 168, 255, 0.2);
    color: #00a8ff;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .situation-cards {
        grid-template-columns: 1fr;
    }
    
    .suggestions-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility classes to replace inline styles */
.header-subtitle {
    color: #a0a0a0; 
    font-size: 1.1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

/* Utilities */
.profile-review-card { background: rgba(0, 168, 255, 0.1); border: 1px solid rgba(0, 168, 255, 0.2); border-radius: 12px; padding: 2rem; }
.text-blue { color: #00a8ff; }
.text-white { color: #ffffff; }
.text-gray { color: var(--text-gray); }
.grid-responsive { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.text-center { text-align: center; }
.mt-8 { margin-top: 2rem; }
.pb-8 { padding-bottom: 2rem; }
.no-underline { text-decoration: none; }
