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;
}

 
/* Modal animation */
.modal.fade .modal-dialog {
    transform: translateY(-20px);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: translateY(0);
}

/* Card inside modal */
.user-details-card {
    border-radius: 12px;
    border: 1px solid #e9ecef;
    background-color: #fdfdfd;
}

    /* Labels */
    .user-details-card p strong {
        color: #495057;
    }

/* Floating date input */
.form-floating > .form-control {
    border-radius: 8px;
}

    .form-floating > .form-control:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 8px rgba(13, 110, 253, 0.25);
    }

/* Footer buttons */
.modal-footer .btn {
    border-radius: 8px;
    padding: 8px 18px;
}

/* Section note text */
.verification-note {
    font-size: 0.9rem;
    color: #6c757d;
}

 