/* General styling */
body {
    background-color: #f8f9fa; /* Light gray background */
    font-family: Arial, sans-serif; /* Clean font */
}

/* Card styling */
.card {
    border: 2px solid #26506c !important;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Card header styling */
.card-header {
    background-color: #26506c !important;
    color: white;
    font-weight: bold;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Button styling */
.btn-success {
    background-color: #5cb85c;
    border-color: #4cae4c;
    color: white;
    font-weight: bold;
}

.btn-success:hover {
    background-color: #4cae4c;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.card-header.text-center {
    margin-top: 0; /* Remove the extra margin applied by .text-center */
}

/* Form group styling */
.form-group label {
    font-weight: bold;
    color: #495057; 
}

/* Alert styling */
.alert {
    border-radius: 4px;
    font-size: 1rem;
    margin-bottom: 20px;
    padding: 10px;
}

/* Additional spacing */
.text-center {
    margin-top: 20px;
}