.display-none {
    display: none;
}
.form-view {
    font-size: 1.2em;
}
.drop-list {
    list-style-type: none;
    padding: 10px 10px 10px 10px;
    background-color:rgba(0, 0, 0, 0.12);
    width: 100%;
    min-height: 90px;
}
.drop-list li {
    margin: 5px;
    padding: 2px;
}
.drop-item-large {
    height: 60px;
}
.drop-item-small {
    height: 45px;
}
.drop-item {
    border: 1px solid var(--bs-border-color);
    background-color:rgba(0, 0, 0, 0.15);
    cursor: move;
    display: block;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.9em;
    line-height: 1.3;
    color: var(--bs-app-sidebar-menu-link-color);
}
.drop-item.ui-sortable-helper {
    opacity: 0.5;
}
.dropitem-placeholder-large {
    border: 1px solid var(--bs-theme);
    width: 100%;
    height: 70px;
}
.dropitem-placeholder-small {
    border: 1px solid var(--bs-theme);
    width: 100%;
    height: 55px;
}
.drop-item::first-line {
    font-size: 1.3em;
    color: #fff;
}
.calendar-view
{
    border-width: 0px;
}

.calendar-body-view
{
    border: 1px solid var(--bs-border-color)
}

.calendar-sidebar-view
{
    border-width: 0px !important;
}

.fc-event
{
    cursor: pointer !important;
}

.table-condensed{
    font-size:  0.75rem;
}

.color-picker-display
{
    width:30px; 
    height:30px; 
}

.form-image-view
{
    max-height:70px;
    margin:10px;
}

.pulse-card
{
    min-height:165px;
}

.pulse-title
{
    color: #c0cacf !important;
}

.pulse-subtitle
{
    color: #c0cacf !important;
    font-size: 19px;
}

.pulse-icon
{
    color: #3cd2a5 !important;
    font-size: 50px;
    font-weight: bold;
}

.keiko-data-tablex
{
    display: none;
}

.keiko-data-table-allx
{
    display: none;
}

.timepicker-field
{
    z-index:99999 !important;
}

.datepicker-range-field
{
    z-index:99999 !important;
}

.datepicker-field
{
    z-index:99999 !important;
}

.no-gutter
{
    --bs-gutter-x: 0px !important;
}

.management_selected_users
{
    max-height: 210px; 
    overflow-x: hidden; 
    overflow-y: auto;
}

.input-group.input-group-icon {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.input-group.input-group-icon .form-control {
  flex: 1 1 auto;
  min-width: 0;
}

.input-group.input-group-icon .input-group-text {
  flex: 0 0 auto;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.input-group.input-group-icon p {
  flex: 1 0 100%;
  order: 1;
}

 /* Grey out the image */
.club-item {
    position: relative;
    overflow: hidden; /* ensures overlay doesn't spill */
}

/* Overlay is hidden initially */
.club-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* semi-transparent black */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* invisible by default */
    transition: 0.3s ease;
}

/* Show overlay on hover */
.club-item:hover .overlay {
    opacity: 1;
}

/* Make modal 90% of viewport height */
.website-modal .modal-dialog {
    max-height: 90vh;
    margin: 1.5rem auto; /* optional: keep it vertically centered */
}

/* Make modal body scrollable if content overflows */
.website-modal .modal-body {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(90vh - 80px); /* subtract header/footer height approx */
}

.website-modal-img {
	width: 100%;
	max-width: 750px;
	height: auto;
	display: block;
	margin: 0 auto;
}