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;
}

.hide {
    display:none;
}

.click {
    cursor: pointer;
}

.a-link {
    cursor:pointer;
    color:blue;
    text-decoration:underline;
}

.bg-branded {
    background-color:#12284c;
}

.results-table {
    cursor: pointer;
}

.image-item {
    margin-bottom: 15px;
    cursor: grab;
    width:125px;
    height:125px;
}

.toast-position {
    position: fixed;
    z-index: 10000;
    right: 40px;
    top: 90px;
}

.ul-4-cols {
    columns: 4;
    -webkit-columns: 4;
    -moz-columns: 4;
}

.list-no-style {
    list-style: none;
}

.photo-container {
    position: relative;
    display: inline-block;
    width: 125px;
    height: 125px;
    margin-top: 10px;
    /*margin-left:10px;*/
    margin-right: 20px;
}

    .photo-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 5px;
    }

.photo-container-input {
    width: 125px;
    margin-top: 10px;
    /*margin-left:10px;*/
    margin-right: 20px;
    margin-bottom: 10px;
}

.badge-close {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    cursor: pointer;
    font-size: 12px;
}

.btn-x {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    padding: 0; /* Remove extra padding for a more compact look */
    width: 24px;
    height: 24px;
    border-radius: 50%; /* Circular button */
    font-size: 14px;
    font-weight: bold;
    line-height: 1; /* Adjust line height for better centering */
    cursor: pointer;
}

.login {
    width: 50%;
}

.bg-checkbox {
    width: 25px;
    height: 25px;
}

.table-cell-no-wrap th, td {
    white-space:nowrap;
}

.dt-col-long-text-500 {
    white-space: nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width:500px;
}

.dt-col-long-text-400 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px;
}

.dt-col-long-text-300 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}

.dt-col-long-text-200 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.dt-col-long-text-150 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.dt-col-long-text-500-wrap {
    white-space:normal !important;
    word-wrap: break-word;
    vertical-align: top;
    max-width: 500px;
}

.dt-horz-container {
    overflow-x:auto;
    width: 100%;
}

.dt-horz-table {
    table-layout:fixed;
    width:100%;
}

@media screen and (max-width:1024px) {
    .login {
        width:100%;
    } 
}

@media screen and (max-width: 1200px) {
    .btn-100-sm {
        width: 100%;
    }
}

@media (max-width: 991px) { /* Only on small devices */
    .mt-4-only-sm {
        margin-top: 1.5rem !important;
    }
}

@media (min-width: 768px) {
    .w-md-auto {
        width: auto !important;
    }
}

.collapse-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.collapse-arrow {
    transition: transform 0.3s ease;
}

.collapse.show + .collapse-arrow {
    transform: rotate(90deg); /* Optional if you place the arrow after content */
}

.rotate {
    transform: rotate(90deg);
}