html {
    font-size: 14px;
}

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

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f4f7f4;
}

body > main {
    flex: 1 0 auto;
    padding-bottom: 1.5rem;
}

.footer {
    flex-shrink: 0;
    width: 100%;
    padding: 0.85rem 0;
    background-color: #ffffff;
    border-top: 1px solid #dee2e6;
    text-align: center;
}

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

.card {
    transition: transform 0.1s ease;
}

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

.progress {
    border-radius: 4px;
}

.table thead.table-success th {
    border-bottom: 2px solid #0d6e1f;
}

.btn-success {
    background-color: #0d6e1f;
    border-color: #0d6e1f;
}

.btn-success:hover {
    background-color: #0a5617;
    border-color: #0a5617;
}

code {
    color: #0d6e1f;
    background-color: #f0f8f0;
    padding: 2px 4px;
    border-radius: 3px;
}

.nav-tabs .nav-link.active {
    color: #0d6e1f;
    font-weight: 600;
}
