/* Custom styles for TradeMentor App */

.page { 
    display: none; 
}

.page.active { 
    display: block; 
}

.fade-in { 
    animation: fadeIn 0.3s ease-in; 
}

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

/* Custom checkbox styles */
.form-checkbox {
    appearance: none;
    background-color: #374151;
    border: 1px solid #4b5563;
    border-radius: 0.25rem;
    color: #3b82f6;
    cursor: pointer;
    display: inline-block;
    flex-shrink: 0;
    height: 1rem;
    position: relative;
    width: 1rem;
}

.form-checkbox:checked {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.form-checkbox:checked::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0.375rem;
    height: 0.375rem;
    background-color: white;
    border-radius: 0.125rem;
}

.form-checkbox:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Tab styles for mentor profile */
.tab-btn {
    color: #9ca3af;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Hover effects */
.hover-lift:hover {
    transform: translateY(-2px);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
