html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-select:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin-bottom: 60px; /* Height of the footer */
}

.navbar {
    background-color: #007bff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
}

.main-content {
    flex-grow: 1;
    padding-top: 20px;
    padding-bottom: 20px;
}

.card {
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease-in-out;
}

    .card:hover {
        transform: translateY(-5px);
    }

.form-control, .form-select {
    border-radius: 10px;
}

.btn {
    border-radius: 10px;
    font-weight: 500;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

    .btn-primary:hover {
        background-color: #0056b3;
        border-color: #0056b3;
    }

.table {
    border-radius: 10px;
    overflow: hidden;
}

    .table thead {
        background-color: #e9ecef;
    }

    .table th, .table td {
        vertical-align: middle;
    }

.alert {
    border-radius: 10px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px; /* Set the fixed height of the footer here */
    line-height: 60px; /* Vertically center the text there */
    background-color: #343a40;
    color: #adb5bd;
    text-align: center;
}

.btn .bi {
    font-size: 1em;
    vertical-align: middle;
}

.navbar .nav-link .bi {
    font-size: 1.1em;
    vertical-align: middle;
}

.card-title .bi {
    font-size: 1.5em;
}

h2 .bi {
    font-size: 1.2em;
}

.dashboard-card .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.dashboard-card .card-title {
    font-size: 1.5rem;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #343a40;
}

.dashboard-card .card-text {
    color: #6c757d;
    text-align: center;
    margin-bottom: 20px;
}

.dashboard-card i {
    font-size: 3.5rem;
    color: #007bff;
}

.dashboard-card .btn {
    width: 80%;
    max-width: 200px;
}

.store-card {
    cursor: pointer;
}

    .store-card:hover {
        border-color: #007bff;
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
    }

    .store-card .card-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 30px;
        min-height: 200px;
    }

    .store-card .card-title {
        font-size: 1.5rem;
        margin-top: 15px;
        margin-bottom: 10px;
        color: #343a40;
    }

    .store-card .card-text {
        color: #6c757d;
        text-align: center;
        margin-bottom: 20px;
    }

    .store-card i {
        font-size: 3.5rem;
        color: #007bff;
    }

.status-badge {
    font-size: 0.85em;
    padding: 0.4em 0.7em;
    border-radius: 0.5em;
}

.combo-service-assignment {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    background-color: #f8f9fa;
}

    .combo-service-assignment .form-label {
        font-weight: bold;
        margin-bottom: 8px;
    }
