body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

h1, h4, h5 {
    color: #007bff;
}

.form-check-label {
    color: #555;
}

.form-check-input:checked {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

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

.required::after {
    content: '*';
    color: red;
}

textarea, input[type="text"], input[type="email"], input[type="tel"], input[type="file"] {
    border: 1px solid #ced4da;
    border-radius: 4px;
}

textarea:focus, input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="file"]:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);
}

.form-check-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);
}

.modal-content {
    border-radius: 8px;
}

.modal-header, .modal-footer {
    border-bottom: none;
    border-top: none;
}

.modal-title {
    color: #007bff;
}
