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;
}

body {
    font-family: 'Inter', sans-serif;
}


.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.upload-area {
    border: 2px dashed #6c757d;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    background: #f8f9fa;
    cursor: pointer;
    transition: background 0.2s ease;
}

.upload-area:hover {
    background: #eef0f2;
}

.file-list {
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
}

.file-list li {
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}
.btn-success {
    font-weight: bold;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.remove-btn {
    background: none;
    border: none;
    color: #c00;
    font-size: 16px;
    cursor: pointer;
}

.remove-btn:hover {
    color: #900;
}

.upload-message {
    margin-top: 8px;
    color: #b33;
    font-size: 14px;
    display: none;
}
