.hide{
	display:none;
}
.show{
	/* display property removed to avoid theme conflicts and invalid syntax */
}
.hiLightedUploadItemRowRead, .hiLightedUploadItemRowRead td{
    background-color: #414bba !important;
    color: white !important;
}
#markdown a {
    color: #414bba !important; /* ensures the link color remains consistent */
    text-decoration: none; /* optional: remove underline */
  }

#markdown a:hover {
color: #070e19 ;        /* ensures the hover color remains consistent */

}

.feather {
    font-size: 0.75rem; /* makes it smaller relative to text */
}

.form-control-login-text{
    background-color: transparent !important;
}
/*for datatables let's right align the tools on top*/
.top-toolbar {
    display: flex;
    justify-content: flex-end; /* Align everything to the right */
    align-items: center;
    flex-wrap: wrap;
}

.read-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #414bba;
    border-radius: 2px;
}
.deleted-indicator {

    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #db768f;
    border-radius: 2px;
}
.read-indicator-container {


}
.readonly{
    background-color:lightgray;
    cursor:not-allowed;
}
.tagsinput span.tag a {
   color: white !important;
}
#available-tags {
   	list-style-type: none;
   	padding-left: 0;
}
#available-tags li {
   	display: inline-block;
   	background-color: #e0e0e0;
   	padding: 5px 10px;
   	margin: 5px;
   	border-radius: 3px;
   	cursor: pointer;
}
#available-tags li:hover {
   background-color: #d0d0d0;
}
.tagsinput span.tag {

   	color: white !important;
   	border: 1px solid black; /* optional: makes the border blend with the background */
}
.tagsinput span.tag a {
   color: white !important; /* makes the 'x' button white */
   padding: 4px 4px 4px 4px
}
.login-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.login-links a {
    white-space: nowrap;
}
/*pulse effect*/
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-three-times {
    animation: pulse 1s ease-in-out;
    animation-iteration-count: 3;
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-5px);
    }
}

.bounce-animation-three-times {
    animation: bounce 1s ease-in-out 3;
}
#progress-bar-container {
    background-color: #e0e0e0; /* Background of the container */
    border-radius: 4px;
    overflow: hidden;
    margin-top: 5px;

}

#progress-bar {
    height: 100%;
    transition: width 0.5s;

}

/* Shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.shimmer-animation {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 25%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    position: relative;
    overflow: hidden;
}

.shimmer-animation::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    animation: shimmer 2s infinite;
}


/* toaster start */
#toaster-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toaster {
    background-color: #333;
    color: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    max-width: 300px;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.toaster.show {
    opacity: 1;
    transform: translateX(0);
}

.toaster.hide {
    opacity: 0;
    transform: translateX(100%);
}
/* toaster end */

.aside-body {
    overflow-y: auto; /* Enables vertical scrolling */
    max-height: 400px; /* Adjust this value to fit your layout */
    padding-right: 0px; /* Adjusts for scrollbar */
}

.button-burnt-orange{
	background-color:#ff6c03e3 !important;
	color:white !important;
}
.btn-condensed {
    padding: 4px 6px; /* Reducing padding for a tighter fit */
    margin: 0 4px; /* Reducing margin to decrease space between buttons */
    font-size: 14px; /* Optionally reduce the font size */
    line-height: 1; /* Maintain a tight line-height */
	height:35px;
	margin-left:10px;
}

/* Style for highlighting a recently edited row in DataTables */
.highlight-row td {
    background-color: #e6e0f8 !important; /* Light purple background */
    transition: background-color 0.5s ease-in-out; /* Smooth transition for fade-out (if JS removes class) */
}

.btn-condensed .icon-sm {
    width: 16px;
    height: 16px;
    margin-right: 3px; /* Adjust margin for icons inside the button */
}

.btn-condensed svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.btn-condensed p {
    margin-bottom: 0;
}

/* Extra-extra-small button style */
.btn-xxs {
    padding: 0.2rem 0.5rem; /* Slightly larger than previous but still smaller than xs */
    font-size: 0.7rem; /* Better readable font size */
    line-height: 1.2; /* Improved line height for better text alignment */
    border-radius: 0.2rem; /* Consistent with other buttons */
}

/* Icon adjustments for xxs buttons */
.btn-xxs.btn-icon {
    width: 24px; /* Better proportioned width */
    height: 24px; /* Better proportioned height */
    padding: 0;
}

.btn-xxs.btn-icon svg,
.btn-xxs.btn-icon i {
    height: 12px; /* Appropriate icon size */
    width: 12px;
}

/* Icon with text adjustments for xxs buttons */
.btn-xxs.btn-icon-text .btn-icon-prepend,
.btn-xxs.btn-icon-text .btn-icon-append {
    width: 12px;
    height: 12px;
    margin-right: 0.3rem;
}
