/* styles.css - Custom styles for tux.wf */

/* Global page layout adjustments */
body {
    background-color: #f7f7f7;
    font-family: Arial, Helvetica, sans-serif;
}

/* Card styling */
.card {
    border-radius: 10px;
}

.card-body {
    padding: 2rem;
}

/* Buttons */
.btn-primary {
    background-color: #005bbb;
    border-color: #004999;
}

.btn-primary:hover {
    background-color: #004999;
    border-color: #003f88;
}

/* Headline adjustments */
h4, h5 {
    font-weight: 600;
}

/* Footer */
footer {
    margin-top: 50px;
}

footer p {
    margin-bottom: 5px;
}

/* Input focus effect */
.form-control:focus, .form-select:focus {
    border-color: #005bbb;
    box-shadow: 0 0 0 0.2rem rgba(0, 91, 187, 0.25);
}
