/* Custom styles for Quick Park */

/* Add some spacing to the navbar items */
.navbar-nav .nav-item {
    margin-right: 10px;
}

/* Make badges a bit larger */
.badge {
    font-size: 90%;
    padding: 0.4em 0.6em;
}

/* Add hover effect to table rows */
.table-hover tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.05);
}

/* Add transition to buttons */
.btn {
    transition: all 0.2s ease-in-out;
}

/* Custom card shadow */
.card.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

/* Improve form control focus state */
.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
    border-color: #80bdff;
}

/* Style form labels */
.form-label {
    font-weight: 500;
    color: #495057;
}

/* Add spacing to icons in buttons */
.btn i {
    margin-right: 0.5rem;
}

/* Style the navbar brand */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Add subtle border to table headers */
.table thead th {
    border-bottom: 2px solid #dee2e6;
}
