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;
}


.cursor-pointer{
    cursor: pointer;
}


@media (max-width: 576px) {
    .icon-sm {
        font-size: 1.15em !important; /* Normal size on medium and up */
    }
    .w-sm-100{
        width:100%;
    }
}


.editable[contenteditable]:empty::before {
    content: attr(data-placeholder);
    color: #aaa;
}
.editable[contenteditable]{
    word-wrap:anywhere;
}
/*.card + .card::before {
    content: "";
    display: block;
    border-top: 1px solid #dee2e6;*/ /* Bootstrap's default border color */
    /*margin: 1rem 0;
}*/
html {
    scroll-behavior: auto !important;
}

.resize-vertical{
    resize: vertical;
}


.modal .modal-dialog {
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
    transform: none !important; /* Prevent slide down/up */
}

.modal.fade.show .modal-dialog {
    opacity: 1;
    transform: none !important; /* Ensure no movement */
}

.profile-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    top: 350px;
    left: 20px;
    z-index: 10;
    margin-top: -50px;
}


/* Hide the caret */
.no-caret::after {
    display: none !important;
}
body[data-bs-theme='dark'] input,
body[data-bs-theme='dark'] input::placeholder,
body[data-bs-theme='dark'] textarea,
body[data-bs-theme='dark'] textarea::placeholder,
body[data-bs-theme='dark'] div[data-rich-text][contenteditable]
{
    color: #94a3b8; /* or any light color that contrasts with dark background */
    opacity: 1; /* Ensure it's fully visible */
}

.white-space-pre-wrap {
    white-space: pre-wrap;
}

.disabled-link {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}
/*


.btn-group {
    display: flex;
    width: 100%;
}

.btn-form {
    flex: 1 1 auto;
    margin: 0;
    padding: 0;
}

.btn-form button {
    width: 100%;
    border-radius: 0;
}

.btn-form:first-child button {
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.btn-form:last-child button {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}
*/

body, html {
    overflow-x: hidden;
}