/* assets/css/style.css */

body {
    font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;
    background-color: #f4f6f9;
}

.card {
    border-radius: 12px;
}

.btn {
    border-radius: 8px;
}

.navbar-brand {
    font-size: 1.25rem;
}

/* Service type selection buttons */
.btn-check + label.btn {
    border-radius: 10px;
    transition: all 0.2s ease;
}

.btn-check:checked + label.btn {
    background-color: #0d6efd;
    color: #fff;
}

/* Responsive tables - scroll on mobile instead of overflow */
.table-responsive {
    -webkit-overflow-scrolling: touch;
}

/* Toast notifications */
.toast {
    min-width: 250px;
}

/* Mobile tweaks */
@media (max-width: 576px) {
    .navbar-brand { font-size: 1.05rem; }
    h4 { font-size: 1.15rem; }
    h5 { font-size: 1.05rem; }
    .card-body { padding: 1rem; }
    .btn { font-size: 0.9rem; }
    .table { font-size: 0.85rem; }
}

/* Tablet tweaks */
@media (min-width: 577px) and (max-width: 991px) {
    .container { max-width: 95%; }
}

/* Sticky footer spacing */
footer {
    margin-top: auto;
}

/* Card hover effect on dashboards */
.card.h-100:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s ease;
}

/* Badge spacing fix on small screens */
.badge {
    white-space: nowrap;
}

/* Form check boxes in registration grid */
.form-check.border {
    transition: background 0.15s ease;
}
.form-check.border:hover {
    background-color: #f8f9fa;
}
