:root {
    --header-height: 100px;
    --footer-height: 40px;
    --sidebar-width: 20%;
    --sidebar-width-mobile: 50%;
    --sidebar-button-height: 42px;
    --sidebar-top-width: 400px;
    --transition-speed: 0.3s;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    margin-bottom: 60px;
    overscroll-behavior: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    border: 1px solid #ccc;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    background-color: white;
}

h2 {
    font-weight:lighter;
}

.div-header{
    padding: 0;
}

.toggle-btn-top {
    position: relative; 
    height: auto !important;
    width: 40px !important;
    padding-top: 4px;
    align-items: center;
    text-align: center;
    cursor: pointer;
    border: 2px solid black;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}

.toggle-btn-top:hover {
    color: #2C5697 !important;
}

.sidebar {
    position: fixed;
    bottom: 0%;
    right: 0;
    height: fit-content;
    width: 5%;
    background-color: #ffffff;
    color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    transition: width 0.3s;
    z-index: 3000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
    border: none;
}

.sidebar.collapsed {
    width: var(--sidebar-width);
    height: 100%;
    border: 3px solid #041C2C;
    border-right: none;
}

.sidebar-option {
    position: fixed;
    display: none;
    transition: display 0.1s;
    width: var(--sidebar-width);
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    margin-top: 3%;
}

.menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 15px;
    flex-wrap: wrap;     
    gap: 25px;
    display: none;
    height: var(--header-height);
}

.menu-header-button {
    width: auto !important;
    height: 40px !important;
    top: 0;
    right: 0;
    position: absolute;
    border: none !important;
}

.menu-header.collapsed {
    display: block;
}

.menu-logo {
    width: auto;
    height: 100px;
}

.sidebar-option.collapsed {
    display: block;
}

.sidebar-bottom-options {
    position: fixed;
    bottom: 0;
    width: var(--sidebar-width);
}

.sidebar-button {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    gap: 5;
    height: var(--sidebar-button-height) !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-color: #041C2C !important;
}

.sidebar-button > i {
    padding-top: 5px;
    height: 40px;
    width: 40px;
    margin-left: 10px;
    align-items: center;
    text-align: center;
}

.sidebar-button > span {
    width: 60px;
    text-align:left;
    padding: 0 !important;
}

.sidebar-playlist-icon {
    font-size: 36px !important; 
    font-weight: bold !important;
    margin-bottom: 7.5px;
}

.main-content {
    flex-grow: 1;
    margin-left: 0%;
    transition: margin-left 0.3s, margin-top 0.3s, margin-right 0.3s;
    margin-top: var(--header-height);
}

.main-content.collapsed {
    margin-right: 0%;
    margin-left: var(--sidebar-width);
}

.dataTables_scrollBody thead th {
    padding: 0 !important;
    height: 0 !important;
    visibility: hidden;
}

table.dataTable {
    width: 100% !important;
}   

th {
    background-color: black;
    border: 1px solid black;
    border-radius: 10px;
    color: white;
    text-align: center !important;
    font-size: 14px;
    font-weight: bold;
    padding: 10px !important;
}

th:hover {
    background-color: #2C5697;
    color: black;
}

th:active {
    outline: none;
    background-color: #2C5697;
    box-shadow: inset 0 0 3px;
}

td {
    border: 1px solid #ccc;
    border-radius: 10px;
    color: black;
    text-align: center;
}

td:hover {
    background-color: #2C5697;
    color: white;
}

label {
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: black;
}

.title-sweet {
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}

.title-view-left {
    text-align: left;
}

.title-view-right {
    text-align: right;
}

h2,
.title-view-left,
.title-view-right {
    color: black;
    font-family: Arial, Helvetica, sans-serif;
}

.title-view-right,
.title-view-left {
    overflow-wrap: break-word;
} 

.small-label {
    text-align: center;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    overflow-wrap: break-word;
    font-size: 12px;
    display: block;
    width: 100%;    
} 

.grid-div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    align-items: center;
}  

.modal-title {
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    margin: 0 auto;
    color: black;
}

.tiny-modal {
    width: 90%; 
    margin: 0 auto;
}

.footer-button-modal {
    width: 92.5% !important;
    margin-right: auto;
    margin-left: auto;
}

.form-group {
    text-align: left;
}

.inner-form-group {
    border: 2px solid #2C5697;
    border-radius: 12px;       
    padding: 7.5px;
    margin-top: 10px;          
    margin-bottom: 5px;       
    background-color: #fff; 
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}

.home-media-container {
    position: relative; 
    width: 350px;      
    height: 350px;    
    margin-top: calc(var(--header-height) + 70px) !important;
    border: 3px solid #041C2C;
    border-radius: 200px;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.5);
}

.home-media-container video,
.home-media-container img {
    position: absolute; 
    top: 0;             
    left: 0;            
    width: 100%;        
    height: 100%;       
    object-fit: cover;  
    border-radius: 200px;
}

.home-media-container img {
    z-index: 2;
    transition: background-color 0.5s;
}

.home-media-container video {
    z-index: 1;
    pointer-events: none;
}

.home-media-container img:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.separator-div {
    padding: 10px;
    text-align: end;
}

.separator-filters-div {
    padding: 10px;
    margin-top: -1%;
    text-align: end;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.danger {
    color: red;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
}

.options {
    list-style: none;
    left: 0;
    margin-left: 0;
    align-items: flex-start;
}

.options_header {
    display: none;
    position: fixed;
    top: 1px;
    list-style: none;
    transition: opacity 0.3s, transform 0.3s;
    background-color: rgba(73, 49, 3, 0.7);
    transform: translateX(10px);
    z-index: 1000;
    margin: 90px 50px 0 -420px;
    border: 1px solid #ccc;
    border-radius: 10px;
    align-items: center;
    padding: 15px;
    width: 400px;
}

.module.active .options {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.option {
    margin-top: 3px;
}

.main-img {
    width: 120px;
    height: 95px;
}

.header-logo {
    width: auto;
    height: 75px;
}

.main-title-img{
    height: 50px;
    width: auto;
}

.main-title {
    text-align: center;
    border: 3px solid black;
    border-radius: 50px;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s, color 0.3s;
    font-family: Arial;
}

.main-title:hover {
    background-color: black;
    color: white;
}

.content {
    flex: 1;
    padding: 20px;
}

.layout-selectpicker {
    background-color: transparent;
    color: #000;
    width: 270px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s, color 0.3s;
    font-weight: bold;
    border-radius: 10px;
    border-width: 2px;
    border-color: #545554;
    border-right-color: #000;
    border-bottom-color: #000;
    height: auto;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 3px;
}

.layout-selectpicker:hover {
    background-color: black;
    color: white;
}

.layout-selectpicker:focus {
    background-color: black;
    color: white;
}

.user-info{
    display: inline-flex;
    margin-right: 4px;
}

.layout-button {
    background-color: transparent;
    color: #000;
    height: auto;
    width: 100%;
    text-align: center !important;
    border: 2px solid black;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    transition: background-color 0.3s, color 0.3s; 
}

.transition-button {
    opacity: 0;
    width: 0;
    height: 0;
    transition: width 0.3s, opacity 0.7s; 
}

.fade-in {
    width: 100%;
    height: auto;
    opacity: 1;
}

.user-info .layout-button {
    margin-top: 3px; 
}

.user-info .layout-button:hover{
    transform: translateY(-5px);
}

.layout-button:hover {
    background-color: black;
    color: white;
}

.layout-button:active {
    outline: none;
    background-color: #2C5697;
    box-shadow: inset 0 0 3px;
}

.general-span {
    font-size: 16px;
    padding: 3px;
    margin: 3px;
    text-align: right;
    font-family: Arial, Helvetica, sans-serif;
}

.blur-fade {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}  

.general-modal .modal-dialog {
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 5.5);
    border-radius: 12px;
    width: 80vw; 
    max-width: 80%; 
    margin: 0 auto; 
    align-items: center; 
    margin-top: var(--header-height);
    left: 0;
    right: 0;
}

.modal-content{
    border-radius: 12px;
}

.page-wrapper-div,
.page-wrapper-div-padded {
    border: 2px solid #2C5697;
    border-radius: 12px;   
    width: 100%;    
    height: fit-content;
    padding: 1%;
    background-color: #fff; 
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.page-wrapper-div + .grid-div {
    margin-top: 0.5%;
    margin-bottom: 0.5%;
}

/* .page-wrapper-div-padded {
    padding-left: 2%;
    padding-right: 2%;
} */

.centered-div {
    display: flex; 
    justify-content: center;
    align-items: center;    
    flex-wrap: wrap;     
    gap: 25px;
}  

.no-gap {
    gap: 0px !important;
}

.general-div {
    text-align: center;
    align-items: center;
    justify-content: center;
}

.general-button {
    background-color: black;
    color: #fff;
    height: 40px;
    width: 120px;
    text-align: center;
    border: 2px solid #000;
    border-radius: 10px;
    cursor: pointer;
    opacity: 1;
    margin-right: -10px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}

.general-button-info {
    background-color: #818284;
    color: #000;
    height: 40px;
    width: 120px;
    text-align: center;
    border: 2px solid #000;
    border-radius: 10px;
    cursor: pointer;
    opacity: 1;
    margin-right: -10px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.general-accept-button {
    background-color: black;
    color: #fff;
    height: 40px;
    width: 120px;
    text-align: center;
    align-content: center;
    border: 2px solid #000;
    border-radius: 10px;
    cursor: pointer;
    opacity: 1;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    /* z-index: 1000; */
}

.active-btn {
    background-color: #2C5697 !important;
}

.active-btn:hover {
    background-color: #000 !important;
    color: #fff !important;
}

.general-button:not(:disabled):hover {
    background-color: #2C5697;
    color: black;
}

.general-button:disabled:hover {
    background-color: #818284;
    color: #fff;
}

.general-button-info:hover {
    background-color: #000;
    color: #fff;
}

.general-button-info:active {
    outline: none;
    background-color: #2C5697;
    box-shadow: inset 0 0 3px;
}

.general-button:not(:disabled):active {
    outline: none;
    background-color: #2C5697;
    box-shadow: inset 0 0 3px;
}

.general-accept-button:hover {
    background-color: #2C5697;
    color: black;
}

.general-accept-button:active {
    outline: none;
    background-color: #2C5697;
    box-shadow: inset 0 0 3px;
}

.general-table-button {
    background-color: #2C5697;
    color: black;
    height: 30px;
    width: 36px;
    text-align: center;
    border: 2px solid #000;
    border-radius: 10px;
    cursor: pointer;
    opacity: 1;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.general-table-button-info {
    background-color: #818284;
    color: black;
    height: 30px;
    width: 36px;
    text-align: center;
    border: 2px solid #000;
    border-radius: 10px;
    cursor: pointer;
    opacity: 1;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.general-table-button:hover {
    background-color: black;
    color: white;
}

.general-table-button:not(:disabled):active {
    outline: none;
    background-color: #2C5697;
    box-shadow: inset 0 0 3px;
}

.general-table-button-info:hover {
    background-color: black;
    color: white;
}

.general-table-button-info:active {
    outline: none;
    background-color: #2C5697;
    box-shadow: inset 0 0 3px;
}

.general-table-button-left {
    background-color: #2C5697;
    color: black;
    height: auto;
    width: auto;
    text-align: center;
    border: 2px solid dimgrey;
    border-radius: 10px;
    cursor: pointer;
    opacity: 1;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.general-table-button-left:hover {
    background-color: black;
    color: white;
}

.general-table-button-left:active {
    outline: none;
    background-color: #2C5697;
    box-shadow: inset 0 0 3px;
}

.general-cancel-button {
    background-color: grey;
    color: #000;
    height: 40px;
    width: 120px;
    text-align: center;
    border: 2px solid dimgrey;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    opacity: 1;
    transition: background-color 0.3s, color 0.3s;
    /* Add transition for smooth effect */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.general-cancel-button:hover {
    background-color: black;
    color: white;
}

.general-cancel-button:active {
    outline: none;
    background-color: #2C5697;
    box-shadow: inset 0 0 3px;
}

.forgot-password-button {
    background-color: transparent;
    color: black;
    height: fit-content;
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.forgot-password-button:hover {
    color: #2C5697;
}

.forgot-password-button:active {
    outline: none;
    color: black;
}

.resend-code-button {
    background-color: #2C5697;
    color: #000;
    height: 40px;
    width: 120px;
    text-align: center;
    border: 2px solid black;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    opacity: 1;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.resend-code-button:hover:not(:disabled) {
    background-color: black;
    color: white;
}

.resend-code-button:disabled {
    background-color: #c1c2c4;
    border-color: grey;
    color: black;
    cursor: not-allowed;
    opacity: 0.7;
} 

.table-file-div {
    width: 100%;
    height: 40px;
    position: relative;
    display: inline-block;
}

.table-image-wrapper {
  position: relative;
  display: inline-block;
}

.table-image-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-radius: 10px;
  border: 1px solid #ccc;
  opacity: 0; 
  transition: opacity 0.3s ease;
}

.table-image-wrapper:hover .overlay {
  opacity: 1;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  background: rgba(0, 0, 0, 1);
}

.table-image-wrapper:hover img {
  opacity: 0.5;
}

.table-image-wrapper:hover video {
  opacity: 0.5;
}

.table-image-wrapper:active .overlay {
    outline: none;
    background-color: #2C5697;
    box-shadow: inset 0 0 3px;
}

.general-table-button-success {
    background-color: #40a040;
    color: black;
    height: 30px;
    width: 36px;
    text-align: center;
    border: 2px solid #000;
    border-radius: 10px;
    cursor: pointer;
    opacity: 1;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.general-table-button-success:hover {
    background-color: black;
    color: white;
}

.general-table-button-success:active {
    outline: none;
    background-color: #40a040;
    box-shadow: inset 0 0 3px;
}

.general-table-button-warning {
    background-color: #e48e0d;
    color: black;
    height: 30px;
    width: 36px;
    text-align: center;
    border: 2px solid #000;
    border-radius: 10px;
    cursor: pointer;
    opacity: 1;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.general-table-button-warning:hover {
    background-color: black;
    color: white;
}

.general-table-button-warning:active {
    outline: none;
    background-color: #e48e0d;
    box-shadow: inset 0 0 3px;
}

.general-table-button-error {
    background-color: #ca2c2c;
    color: black;
    height: auto;
    width: auto;
    text-align: center;
    border: 2px solid #000;
    border-radius: 10px;
    cursor: pointer;
    opacity: 1;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.button-multimedia {
    height: 40px;
    width: 40px;
}

.button-multimedia-pending {
    height: 40px;
    width: 40px;
    background-color: gray;
}

.general-table-button-error:hover {
    background-color: black;
    color: white;
}

.general-table-button-error:active {
    outline: none;
    background-color: #ca2c2c;
    box-shadow: inset 0 0 3px;
}

.general-table-button-gray {
    background-color: #99998c;
    color: black;
    height: 30px;
    width: 36px;
    text-align: center;
    border: 2px solid #000;
    border-radius: 10px;
    cursor: pointer;
    opacity: 1;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.general-table-button-gray:hover {
    background-color: black;
    color: white;
}

.general-table-button-gray:active {
    outline: none;
    background-color: #99998c;
    box-shadow: inset 0 0 3px;
}

.inside-btn {
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    border-left: none;
    z-index: 1000;
    margin: 0 0 15px 0;
    height: 35px;
    right: 0; 
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.sweet2-confirmbutton {
    background-color: #2C5697 !important;
    color: black !important;
    height: 50px !important;
    width: 100px !important;
    text-align: center !important;
    border: 2px solid #000 !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    font-size: 16px !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s !important;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5) !important;
}

.sweet2-confirmbutton:hover {
    background-color: black !important;
    color: white !important;
}

.sweet2-confirmbutton:active {
    outline: none !important;
    background-color: #2C5697 !important;
    box-shadow: inset 0 0 3px !important;
}

.sweet2-cancelbutton {
    background-color: grey !important;
    color: black !important;
    height: 50px !important;
    width: 100px !important;
    text-align: center !important;
    border: 2px solid dimgrey !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    font-size: 16px !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s !important;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5) !important;
}

.sweet2-cancelbutton:hover {
    background-color: black !important;
    color: white !important;
}

.sweet2-cancelbutton:active {
    outline: none !important;
    background-color: #2C5697 !important;
    box-shadow: inset 0 0 3px !important;
}

.general-input {
    border: 2px solid #000;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 15px;
    height: 35px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}

.general-input-big {
    border: 2px solid #000;
    border-radius: 10px;
    padding: 10px !important;
    margin-bottom: 15px;
    height: 35px;
    width: 350px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}

.radio-button-div {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 15px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}

.general-input-with-icon {
    border: 2px solid #000;
    padding: 10px;
    margin: 0 0 15px 0;
    border-radius: 10px;
    font-size: 16px;
    height: 35px;
    font-family: Arial, Helvetica, sans-serif;
    background-size: 20px 20px;
    background-position: 10px center;
    background-repeat: no-repeat;
    padding-left: 40px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}

.general-textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid #000;
    border-radius: 10px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}

.filter-selectpicker {
    border: 1px solid #ccc;
    border-radius: 10px;
    height: 40px;
    margin-left: -10px;
    width: fit-content;
    font-weight: bold;
    align-items: center;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}

.selectpicker {
    border: 2px solid #000;
    border-radius: 10px;
    margin-bottom: 15px;
    height: 35px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}

.multimedia {
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.general-float-bg {
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}

.username {
    background-image: url('../img/user_icon.png');
}

.password {
    background-image: url('../img/password_icon.png');
}

.warning {
    color: red;
}

.warning-border {
    border-color: red;
}

#div_week_days {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

#div_week_days input[type="checkbox"] {
    display: none;
}

#div_week_days label {
    padding: 5px 12px;
    border: 2px solid #000;
    border-radius: 20px;
    cursor: pointer;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s ease;
    background: white;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}

#div_week_days label:hover {
    background-color: black;
    color: white;
}

#div_week_days input:checked+span,
#div_week_days label:has(input:checked) {
    background-color: #2C5697;
    border-color: black;
    color: black;
}

.file-loading-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: #bbbbb3;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  width: 400px;
  height: 400px;
  transition: background-color 0.3s, color 0.3s;
}

.file-loading-button:hover {
    background-color: black;
    color: white;
}

.file-loading-button.loading {
  opacity: 0.6;
  color: transparent !important;
  cursor: progress;
}

.file-loading-button::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  border: 2px solid rgba(0, 66, 136, 0.2);
  border-top-color: #2C5697;                
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.file-loading-button.table::after {
  width: 16px;
  height: 16px;
  top: calc(50% - 7.5px);
  left: calc(50% - 8px);
}

.file-loading-button.loading::after {
  opacity: 0.6;
  animation: button-spin 0.6s linear infinite;
}

.preview-playlist-modal-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-playlist-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.preview-playlist-modal-content {
    background-color: #fff;
    width: auto;
    max-width: 1000px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 90vh;
}

.playlist-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    scroll-behavior: smooth;
    /* Hide scrollbar for cleaner look (optional) */
    scrollbar-width: thin; 
    scrollbar-color: #aaa #f1f1f1;
}

.playlist-container-one {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
}

.playlist-container::-webkit-scrollbar {
    height: 8px;
}
.playlist-container::-webkit-scrollbar-track {
    background: #aaa;
    border-radius: 4px;
}
.playlist-container::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 4px;
}
.playlist-container::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.media-card {
    flex: 0 0 300px; /* Fixed width, no shrink, no grow */
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.media-card-one {
    flex: 0 0 400px; /* Fixed width, no shrink, no grow */
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.media-card:hover, .media-card-one:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.media-wrapper {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.media-wrapper img, 
.media-wrapper video {
    width: 300px;
    height: 300px;
    object-fit: contain;
    display: block;
}

.media-wrapper-one {
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.media-wrapper-one img, 
.media-wrapper-one video {
    width: 400px;
    height: 400px;
    object-fit: contain;
    display: block;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.image-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #2C5697;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  
  /* Hidden state */
  opacity: 0; 
  transition: opacity 0.3s ease;
}

.image-wrapper:hover .overlay {
  opacity: 1;
}

.general-button-info-grouped { 
    background-color: #818284;
    color: #000;
    width: 40px; 
    margin-right: 1px;
    height: 35px;
}

.select-grouped {
    height: 35px;
    text-align: center;
    border: 2px solid #000;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
}

.element-group {
  display: flex;
  gap: 0; 
}

.element-group > :first-child {
  border: 2px solid #000;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding-left: 40px;
}

.element-group button:last-child {
  border-left: none; 
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}   

.change-password-requeriments,
.profile-info {
    text-align: center; 
    font-family: sans-serif; 
    padding: 3px; 
    background: #f9fafb; 
    border: 2px solid #000; 
    border-radius: 8px; 
    margin-bottom: 10px;
}

.change-password-requeriments p {
    text-align: center;
    font-weight: 600; 
    color: #000000; 
    font-size: 18px;
}

.change-password-requeriments ul,
.profile-info ul {
    gap: 4px;
    padding-left: 1%;
}

.profile-info ul {
    padding-left: 5%;
    text-align: justify;
}

.change-password-requeriments ul li,
.profile-info ul li {
    gap: 4px;
    font-size: 16px; 
    color: #2C5697; 
    line-height: 1.6;
    display: flex; 
}

.change-password-requeriments ul li.valid { 
    color: #40a040; 
}

.change-password-requeriments ul li.invalid,
.profile-info ul li { 
    color: #000; 
}

.change-password-requeriments ul li.invalid span::before { 
    content: '•'; 
    color: #2C5697;
} 

.change-password-requeriments ul li.valid span::before { 
    content: '✔';
}

.dot::before  { 
    content: '•'; 
    color: #2C5697;
} 

.site-footer {
  background-color: white;       
  color: #000;                  
  padding: 10px 0;             
  text-align: center;   
  font-size: small;      
  width: 100%;    
  height: var(--footer-height);             
  margin-top: auto;          
  font-weight: bold;
  bottom: 0;
  position: fixed;
  border: 1px solid #ccc;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
  background-color: white;
  z-index: 500;
  transition: margin-left 0.3s, margin-top 0.3s, margin-right 0.3s;
}

.site-footer.collapsed {
    margin-right: 0%;
    margin-left: var(--sidebar-width);
}

.site-footer small {
  font-size: 0.9rem; 
  color: black; 
  display: block; 
  border: 2px solid black;
  border-radius: 60px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
  background-color: transparent;
  width: fit-content;
  height: fit-content;
  padding: 5px;
  text-align: center;
  margin: 0 auto;    
  text-align: center; 
}

.site-footer small:hover {
    background-color: black;
    color: #2C5697;
} 

.fa-1-5x {
  font-size: 1.5em !important;
}  

.fa-1-25x {
  font-size: 1.25em !important;
}  

.download-link {
    color: #009CDE;
    cursor: pointer;
    transition: color 0.3s;
}

.download-link:hover {
    color: #000000;
}

#menu-icon {
  transition: all 0.3s ease;
}

#page-blur {
    display: none;
    position: fixed;
}

.blur-page {
  display: block !important; 
  background-color: rgba(0, 0, 0, 0.7); 
  backdrop-filter: blur(4px);
  transition: filter 0.3s ease, transform 0.3s ease;
  margin: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
} 

@media (min-width: 768px) {
    .change-password-login-modal {
        margin-top: 0% !important;
    }
}

@media (max-height: 600px) {
    .sidebar-bottom-options {
        position: static !important;
        width: 100%;
    }
}

@media only screen and (orientation: portrait) and (max-width: 479px) {
    .home-media-container {
        margin-top: calc(var(--header-height) + 130px) !important;
    }
    .sidebar.collapsed {
        width: var(--sidebar-width-mobile);
    }
    .sidebar-option {
        width: var(--sidebar-width-mobile);
    }
    .sidebar-bottom-options {
        width: var(--sidebar-width-mobile);
    }
}   

@keyframes button-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}