/* assets/css/global.css */

/* Global Body Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa; /* Matches Bootstrap bg-light */
    color: #333333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Ensure the main content expands so the footer stays at the bottom */
main.container {
    flex: 1 0 auto;
    padding-bottom: 3rem;
}

/* Custom Card Styling for Forms and Dashboards */
.card {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Custom Button Overrides */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    transform: translateY(-1px);
}

/* Form Control Focus States */
.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}