/* Override the primary button color */
.btn-primary {
    background-color: #ff5722; /* Custom orange color */
    border-color: #ff5722; /* Match the background color */
}

/* Override the secondary button color */
.btn-secondary {
    background-color: #009688; /* Custom teal color */
    border-color: #009688; /* Match the background color */
}

/* Optional: Add hover and focus styles */
.btn-primary:hover,
.btn-primary:focus {
    background-color: #e64a19;
    border-color: #e64a19;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #00796b;
    border-color: #00796b;
}

div.spacer { width: 100%; height: 20px; }