﻿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-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.hover-shadow:hover {
    transform: scale(1.02);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.nav-pills .nav-link {
    border-radius: 8px;
    padding: 10px 15px;
    background-color: #ffffff !important;
    color: #000 !important;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

    .nav-pills .nav-link:hover {
        background-color: #f1f3f5 !important; 
        color: #000 !important;
    }

    .nav-pills .nav-link.active {
        background-color: #0d6efd !important;
        color: #ffffff !important;
        font-weight: 600;
    }