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;
}

.jumbotron {
    background-color: #f8f9fa;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    border-radius: .3rem;
}

.card {
    border: none;
    border-radius: .3rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: .75rem;
}

.card-text {
    margin-bottom: 1.25rem;
}

.btn-primary {
    background-color: #25a07b;
    border-color: #25a07b;
}

    .btn-primary:hover {
        background-color: #25a07b;
        border-color: #25a07b;
    }

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none; 
}

.d-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

.loading-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: #007bff;
    margin-top: 10px;
}

.btn-info {
    background-color: #612F74 !important;
    border-color: #612F74 !important; 
    color: white !important; 
}

    .btn-info:hover {
        background-color: #612F74 !important; 
        border-color: #612F74 !important; 
    }
