/* Lead-specific styles */
.lead-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lead-form .form-control {
    margin-bottom: 1rem;
}

.lead-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.lead-form .btn-primary {
    background-color: #3070ce;
    border-color: #3070ce;
}

.lead-form .btn-primary:hover {
    background-color: #2860b8;
    border-color: #2860b8;
}

.lead-status {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-weight: 500;
}

.lead-status.new {
    background-color: #e3f2fd;
    color: #0d47a1;
}

.lead-status.contacted {
    background-color: #fff3e0;
    color: #e65100;
}

.lead-status.qualified {
    background-color: #e8f5e9;
    color: #1b5e20;
}

.lead-status.closed {
    background-color: #f5f5f5;
    color: #616161;
} 