/* Custom styles for Canadian NOC Resume Rewriter */

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.125);
}

.card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.125);
}

.form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25);
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-primary:hover {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

.progress {
    background-color: rgba(255, 255, 255, 0.1);
}

.text-danger {
    color: #dc3545 !important;
}

.bg-light {
    background-color: var(--bs-gray-100) !important;
    color: var(--bs-gray-900) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .card-body {
        padding: 1rem;
    }
}

/* Animation for form submission */
.btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Custom scrollbar for textarea */
textarea::-webkit-scrollbar {
    width: 8px;
}

textarea::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

textarea::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

textarea::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}
