/* Main Styles */
body {
    background-color: #f8f9fa;
    margin-top: 1rem;
}

.navbar {
    margin-bottom: 20px;
}

.card {
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Form Styles */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Table Styles */
.table th {
    background-color: #f8f9fa;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Test Case Wizard Styles */
.wizard-step {
    transition: all 0.3s ease-in-out;
}

.wizard-step h6 {
    color: #666;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.review-section h6 {
    color: #666;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.review-section p {
    margin-bottom: 1rem;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

#testCaseWizardModal .modal-dialog {
    max-width: 800px;
}

#testCaseWizardModal .modal-body {
    min-height: 400px;
}

#testCaseWizardModal .form-label {
    font-weight: 500;
}

#testCaseWizardModal .modal-footer {
    border-top: 1px solid #dee2e6;
    padding: 1rem;
}

#testCaseWizardModal .btn {
    min-width: 100px;
} 