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;
}

.file-list {
    margin-top: 10px;
    padding: 0;
    list-style: none;
}

    .file-list li {
        margin: 5px 0;
        padding: 5px;
        border: 1px solid #ddd;
        border-radius: 4px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
    }

        .file-list li.invalid {
            background-color: #ffe6e6;
            border-color: #ff4d4d;
            color: #ff4d4d;
        }

    .file-list button {
        background-color: #ff4d4d;
        border: none;
        color: white;
        padding: 5px 10px;
        border-radius: 4px;
        cursor: pointer;
    }

        .file-list button:hover {
            background-color: #e60000;
        }

#hiddenFileContainer {
    display: none;
}

a.disabled {
    --bs-text-opacity: 1;
    color: var(--bs-secondary-color) !important;
}
