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;
    padding-bottom: 100px;
}

.image-editor {
}

.image-wrapper {
    display: flex;
    flex-direction: column;
}

.image-wrapper img {
   width: 100%;
}

.container {
    
}

footer.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}

.feedback-wrapper {
    position: absolute;
    top: 89px;
    width: 100%;
    padding: 15px;
    text-align: center;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.feedback-wrapper.success {
    background-color: green;
}

.message {
    color: white;
    margin: 0;
}

.red {
    color: red!important
}

td {
    vertical-align: middle !important;
}

td:last-child {
    text-align: right !important;
    width: 250px;
}

.icon {
    text-decoration: none !important
}

tr {
    cursor:move
}

tr.selected {
    background-color: #ccc
}

.ui-sortable-helper {
    display: table;
}

#request-feedback {
    display: none;
}

#request-feedback.show {
    display: flex;
}

img.thumbnail {
    border-radius: 50%;
    margin-top: 10px;
}

.uniform-thumb {
    /* make it always fill its container’s width */
    width: 100%;
    /* pick a fixed height that works for your design */
    height: 200px;
    /* crop any overflow so every thumbnail appears uniform */
    object-fit: cover;
    /* optional—give a subtle border or rounded corners */
    border-radius: 4px;
}

.toast-message {
    position: fixed;
    top: 1rem;
    right: 1rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.25rem;
    color: #fff;
    font-weight: 500;
    z-index: 1050;
    display: none;
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.2);
}

.toast-message.success {
    background-color: #28a745;
}

.toast-message.error {
    background-color: #dc3545;
}

.toast-message .icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
    vertical-align: middle;
}

.form-visibility-check-input {
    transform: scale(1.5);
    margin: 0.25rem;
}