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;
}

.image-preview-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    background-color: #f8f9fa;
    margin-top: 10px;
}

#imagePreview {
    object-fit: contain;
    max-width: 100%;
    max-height: 200px;
    margin-bottom: 10px;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* Mobile responsive adjustments */
@@media only screen and (max-width: 600px) {
    .image-preview-wrapper {
        align-items: center;
        text-align: center;
    }

    #imagePreview {
        max-width: 150px;
        max-height: 150px;
    }
}