/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
height: 10px;
width: 10px;
}
*::-webkit-scrollbar-track {
border-radius: 5px;
background-color: #efefef;
}

*::-webkit-scrollbar-track:hover {
background-color: #c3c3c3;
}

*::-webkit-scrollbar-track:active {
background-color: #c1c1c1;
}

html{
    height: 100%;
}

*{
    margin: 0px;
    padding: 0px;
    font-family: "Questrial", sans-serif;
    -webkit-tap-highlight-color: transparent;
}
  
body {
    background: #ffffff;
    width: 100%;
    margin: 0px;
    padding: 0px;
    height: 100%;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.main-body{
    background-image: url("images/usc.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    width: 100%;
    margin: 0;
    justify-content: center;
    align-items: center;
    height: 100%;
    display: flex;
}

.container-body {
    display: flex;
    flex-direction: row; /* Stack containers horizontally on bigger screens */
    align-items: center;
    max-width: 900px; /* Set a maximum width for the container */
    width: 100%;
    box-sizing: border-box;
    margin: 20px;
    border-radius: 15px;
    background: linear-gradient(159deg, rgba(33, 156, 80, 0.15) 0%, rgba(0, 0, 0, 0.484) 100%);
    box-shadow: 10px 10px 20px 5px rgba(0, 0, 0, 0.14) inset;
    backdrop-filter: blur(10px);
    height: auto;
}
  
.container-flex {
    flex: 1;
    width: 100%; /* Make both containers take full width */
    padding: 20px; /* Adjust padding for smaller screens */
}

.logo-flex {
    display: flex;
    flex-direction: column;
}

.main-message {
    width: 100%;
    height: 100%;
    display: block; /* Changed from flex to block for better text containment */
    text-align: left;
    white-space: normal;
    word-wrap: break-word;
    line-height: normal;
    padding: 5px;
    box-sizing: border-box; /* Include padding in size calculation */
    overflow: hidden; /* Prevent text overflow */
    text-align: justify;
}

.archives-buttons-flex, .trash-buttons-flex, .approved-contents-buttons-flex, .pending-contents-buttons-flex, .rejected-contents-buttons-flex {
    display: flex;
    flex-direction: row;
    padding-left: 10px;
    padding-right: 20px;
}

.button-flex, .link-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allow items to wrap to the next line if there's not enough space */
    justify-content: flex-start; /* Align buttons to the left */
    width: auto;
}

.flex-button-modal {
    display: flex;
    flex-direction: row;
    align-items: right;
    justify-content: right;
    text-align: right;
}

.preview-content {
    flex: 1;
    border-radius: 5px;
    padding: 5px;
    width: auto;
    max-width: 250px;
}

.preview-website {
    flex: 2;
    border-radius: 5px;
    width: 100%;
    height: 300px;
    background: #000914;
    margin: 0;
    padding: 0px;
    justify-content: center;
    align-items: center;
}

.flex-preview-content {
    display: flex;
    flex-direction: row;
    align-items: left;
    justify-content: left;
    text-align: left;
    padding: 8px;
}

.button-flex-space-between{
    display: flex;
    justify-content: space-between;
}

.left-flex{
    flex: 1;
}

.right-flex{
    flex: 1;
}

.left-side-button {
    flex: 1;
    margin-right: 7px; /* Adjust margin for spacing between buttons */
}

.right-side-button {
    flex: 4;
    text-align: right;
}

.right-side-button-preview {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.left-side-link {
    flex: 1;
    margin-right: 7px; /* Adjust margin for spacing between buttons */
}

.right-side-link {
    flex: 1;
}

.left {
    flex: 50;
}

.left-textarea-flex {
    flex: 50;
    margin-right: 5px;
}

.right {
    flex: 50;
}

.top {
    align-items: center;
    justify-items: center;
    height: 100%;
    margin: 0;
    text-align: center;
}
  
.bottom {
    border-radius: 0px 15px 15px 0px;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(5px);
    height: 500px;
    max-height: 100%;
    margin: 0;
    padding-top: 30px;
}
  
.soe-logo, .usc-logo {
    max-width: 100%; /* Ensure the USC icon doesn't overflow its container */
    height: auto;
    width: 150px;
    padding: 0;
    margin: 0;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.logo-header-container {
    padding-left: 20px;
    padding-top: 10px;
}

.logo-header {
    width: 300px;
    height: auto;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.logo-header-2 {
    display: none;
    width: 50px;
    height: auto;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.password-container {
    position: relative;
}

#togglePassword {
    position: absolute;
    top: 50%;
    right: 10px; /* Adjust the right distance as needed */
    transform: translateY(-50%);
    cursor: pointer;
    font-style: normal;
}

#toggleConfirmPassword {
    position: absolute;
    top: 50%;
    right: 10px; /* Adjust the right distance as needed */
    transform: translateY(-50%);
    cursor: pointer;
    font-style: normal;
}

#togglePasswordIndex{
    position: absolute;
    top: 50%;
    right: 10px; /* Adjust the right distance as needed */
    transform: translateY(-50%);
    cursor: pointer;
}

form {
    display: flex;
    flex-direction: column;
}
  
.input-field {
    width: 100%;
    padding: 8px 8px;
    display: flex;
    border: none;
    box-sizing: border-box;
    font-size: 14px;
    background-color: rgb(227, 227, 227);
    border-radius: 5px;
    padding-right: 30px;
    margin-top: 15px
}

.input-field:hover, .floating-label-input:hover, .floating-label-input-text-area {
    background-color: rgb(240, 242, 245);
}

.separator{
    margin: 5px;
}

.login-button {
    width: 100%;
    box-sizing: border-box;
    margin-top: 5px;
    background-color: #007638; /* Button background color */
    color: white; /* Button text color */
    border-radius: 5px;
    padding: 12px; /* Add padding to the buttons */
    font-size: 16px; /* Set button text size */
    cursor: pointer; /* Change cursor on hover */
    border: none;
}

.login-button:hover, .create-account-button:hover {
    background-color: #103516; /* Button background color */
}

.create-account-button {
    width: 100%;
    font-size: 16px;
    box-sizing: border-box;
    background: #007638;
    border: none;
    color: white;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    height: 100%;
}

.create-account-link, .go-to-home-link {
    text-decoration: none; 
    color: #007638; 
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

nav a{
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.submit-button {
    width: 80px;
    height: auto;
    padding: 5px;
    margin: 2.5px;
    background: #1e3b22;
    color: #fff;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.okay-button {
    width: 80px;
    padding: 5px;
    margin-top: 15px;
    margin-left: 8px;
    margin-bottom: 8px;
    margin-right: 8px;
    background: #007638;
    color: #fff;
    float: right;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.close-button {
    width: 80px;
    height: auto;
    padding: 5px;
    margin: 2.5px;
    background: #FFFF;
    border: #2f3e42 1.5px solid;
    color: #2f3e42;
    border-radius: 5px;
    cursor: pointer;
}

.back-button {
    width: 60px;
    box-sizing: border-box;
    background: #007638;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px;
    text-align: center;
    align-items: left;
    text-decoration: none;
    display: block; /* Ensure the anchor behaves as a block element */
    user-select: none;
    cursor: pointer;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.add-user-button {
    width: 90px;
    height: 100%;
    box-sizing: border-box;
    background: #007638;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px;
    text-align: center;
    align-items: left;
    text-decoration: none;
    display: block; /* Ensure the anchor behaves as a block element */
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.approve-button, .edit-button {
    width: 95px;
    height: 100%;
    box-sizing: border-box;
    background: #374549;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px;
    text-align: left;
    align-items: left;
    text-decoration: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
}

.decline-button, .delete-button {
    width: 95px;
    height: 100%;
    box-sizing: border-box;
    background: #485f66;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px;
    text-align: left;
    align-items: left;
    text-decoration: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
}

.input-flex-profile {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allow items to wrap to the next line if there's not enough space */
    justify-content: flex-start; /* Align buttons to the left */
    width: auto;
}

.left-side-input-profile, .left-side-input {
    flex: 1;
    margin-right: 7px; /* Adjust margin for spacing between buttons */
}

.right-side-input {
    flex: 1;
}

.profile-field {
    background: #e9e9e9;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-top: 10px;
    border-radius: 10px;
    color: #000;
    overflow-x: auto;
}

.logout-button {
    background: crimson;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-right: 10px;
    color: #FFFF;
    text-decoration: none;
    border-radius: 5px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    height: 28px;
    cursor: pointer;
}

.change-password-button {
    background: #007638;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    border: none;
    text-decoration: none;
    color: #FFFF;
    text-decoration: none;
    border-radius: 5px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    height: 28px;
    cursor: pointer;
}

.change-button {
    background: none;
    font-size: 16px;
    color: #000;
    border-radius: 4px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    text-decoration: none;
    float: right;
    border: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.change-button:hover {
    cursor: pointer;
}

.choose-file-button {
    box-sizing: border-box;
    background: #305e36;
    color: #fff;
    border: none;
    background-color: #316038;
    padding: 8px 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
    margin-right: 5px;
    text-align: left;
    align-items: left;
    text-decoration: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
}

.preview-button{
    float: right;
    color: white;
    cursor: pointer;
    padding: 5px;
    background-color: #316038;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    border: 1px solid #007638;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
    margin-right: 5px;
}

.more-options-button{
    height: 100%;
    box-sizing: border-box;
    color: black;
    border: none;
    background: none;
    font-size: 20px;
    text-align: center;
    align-items: right;
    text-decoration: none;
    display: block; /* Ensure the anchor behaves as a block element */
    margin-right: 10px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
}

.preview-input {
    width: 100%;
    padding: 10px;
    border: none;
    box-sizing: border-box;
    font-size: 15px;
    background-color: rgb(238, 238, 238);
    border-radius: 5px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    margin-bottom: 8px;
    margin-left: 4px;
}

.error-msg {
    margin-bottom: 5px;
    background: rgb(165, 9, 41);
    border-radius: 5px;
    font-size: 15px;
    padding: 5px; /* Added some padding for spacing */
    width: 100%;
    box-sizing: border-box;
    color: #ffffff;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    user-select: none;
    text-align: center;
    word-break: break-word;
}

.input-label {
    display: none;
    margin: 0px;
    color: #333; /* Adjust the color as needed */
    font-size: 12px;
}

.input-container-label{
    top: 0px;
    font-size: 12px;
    color: #007638f0; /* Change color when focused or not empty */
    font-weight: bold;
    border: white;
    margin-bottom: 7px;
}

.main-form {
    max-width: 600px;
    margin: 10px auto;
    /* padding: 20px; */
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 53%);
}

.floating-label-container {
    position: relative;
    margin-top: 7px;
}

.floating-label-input {
    width: 100%;
    padding-top: 20px;
    padding-left: 12px;
    padding-bottom: 12px;
    display: flex;
    border: none;
    box-sizing: border-box;
    font-size: 16px;
    background-color: rgb(238, 238, 238);
    border-radius: 5px;
    padding-right: 30px;
    outline:#007638f0;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

textarea:focus, input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, select:focus {
    background: #F2F2F2;
    border: 1px solid #007638f0;
    border-radius: 15px;
    transition: 0.6s ease;
}

.rounded-container-column {
    width: auto; /* Set a maximum width for the content container */
    border-radius: 5px;
    text-align: left;
    padding: 10px; /* Add padding inside the content container */
    cursor: default;
    box-sizing: border-box;
    margin-top: 7px;
    background: #FFFF;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.rounded-container-column-invi {
    width: auto; /* Set a maximum width for the content container */
    cursor: default;
    box-sizing: border-box;
}

.rounded-container-media {
    width: auto; /* Set a maximum width for the content container */
    border-radius: 5px;
    text-align: justify;
    padding: 10px; /* Add padding inside the content container */
    padding-bottom: 15px;
    cursor: default;
    box-sizing: border-box;
    background: #fff;
    margin-top: 7px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.rounded-container-row {
    width: 100%;
    border: none;
    box-sizing: border-box;
    font-size: 16px;
    display: flex;
    background-color: rgb(255, 255, 255);
    flex-direction: row;
    padding-left: 12px;
    padding-right: 12px;
}

.rounded-container {
    display: flex;
    width: 100%;
    background-color: rgb(255, 255, 255);
    margin-top: 7px;
    border-radius: 5px;
}

.rounded-container-invi {
    display: flex;
    width: 100%;
    margin-top: 7px;
    border-radius: 5px;
}

.container-indicators {
    display: flex;
    width: 100%;
    flex-direction: row;
}

.container-content-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.floating-label-input-text-area{
    width: 100%;
    padding-top: 25px;
    padding-left: 12px;
    padding-bottom: 12px;
    display: flex;
    border: 1px solid #ced4da;
    box-sizing: border-box;
    font-size: 16px;
    background-color: rgb(238, 238, 238);
    border-radius: 5px;
    padding-right: 12px;
    outline:#007638f0;
    resize: none;
    overflow-y: auto;
    transition: border-color 0.3s ease;
}

.floating-label {
    position: absolute;
    top: 20px;
    left: 12px;
    font-size: 14px;
    color: #777;
    pointer-events: none;
    transition: top 0.3s, font-size 0.3s;
}

.floating-label-text-area {
    position: absolute;
    top: 18px;
    left: 12px;
    font-size: 14px;
    color: #777;
    pointer-events: none;
    transition: top 0.3s, font-size 0.3s;
}

.floating-label-input-text-area::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}

.floating-label-input-text-area::-webkit-scrollbar-thumb {
    background-color: #007638; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounded corners for the scrollbar thumb */
}

.floating-label-input-text-area::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* Background color of the scrollbar track */
}

.floating-label-input:focus + .floating-label,
.floating-label-input:not(:placeholder-shown) + .floating-label {
    top: 0px;
    font-size: 12px;
    color: #007638f0; /* Change color when focused or not empty */
    font-weight: bold;
    border-radius: 5px;
    padding-top: 5px;
    border: white;
}

.floating-label-input-text-area:focus + .floating-label-text-area,
.floating-label-input-text-area:not(:placeholder-shown) + .floating-label-text-area {
    top: 0px;
    font-size: 12px;
    color: #007638f0; /* Change color when focused or not empty */
    font-weight: bold;
    border-radius: 5px;
    padding-top: 5px;
    border: white;
}

@keyframes slideIn {
	0% {
		opacity: 0;
		transform: translateY(-5px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideOut {
	0% {
		opacity: 1;
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		transform: translateY(-5px);
	}
}

.preview-video{
    width: 100%;
    border-radius: 5px;
    margin-top: 5px;
    background: #000;
    color: #000;
    border: #000 1px solid; 
    height: 250px; 
    justify-content: center; 
    align-items: center;
}

.page-title{
    font-family: "Roboto Flex", sans-serif;
    font-weight: lighter;
    font-size: 36px;
    text-align: center;
    padding-bottom: 10px;
    user-select: none;
}

.tv-title{
    font-size: 25px;
    padding-bottom: 12px;
    user-select: none;
    margin: 0; 
}

.content-title{
    font-weight: normal;
    font-size: 15px;
    user-select: none;
    margin: 0; 
    color: white;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.view-all-button {
    height: 25px;
    font-size: 25px;
    background: none;
    color: #ffff;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 8px;
}

.line-separator {
    display: block;
    border: 0.5px solid #c0c0c0;
    margin: 10px 0; /* Adjust the margin to position the line */
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.8), 0 6px 50px 0 rgba(0, 0, 0, 0.10); */
}

.forgot-password {
    text-decoration: none;
    font-size: 12px;
    color: #007638; 
    align-items: right;
    justify-content: right;
    text-align: right;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    margin-top: 10px;
    width: auto;
}

.sidebar{
    z-index: 200;
    flex: 1 1 0;
    padding-left: 30px;
    padding-right: 30px;
    overflow: auto;
    position: fixed; /* Keep the sidebar fixed */
    top: 0;
    left: -1000px;
    width: 200px;
    height: 100%;
    background-color: #007638;
    backdrop-filter: blur(10px);
}

.active-sidebar-content{
    background-color: #1e3b22;
    color: rgb(255, 255, 255);
}

.navbar{
    margin: 0px -10px;
}

.navbar a{
    font-weight: 200;
    text-decoration: none;
    display: block;
    padding: 10px;
    margin-top: 10px;
    color: #ffffff;
    border-radius: 10px;
    font-size: 14px;
    text-align: left;
}

.navbar a:hover{
    transition: 0.8s ease;
}

.main-section {
    display: flex;
    height: 100%;
    /*
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 75px;
    box-sizing: border-box;
    overflow: auto;
    */
}

.topnav {
    display: none;
    z-index: 10;
    overflow: hidden;
    background-color: #2F3E42;
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 50px 0 rgba(0, 0, 0, 0.3);
}

.header {
    position: fixed; /* Keep the header fixed */
    top: 0;
    width: 100%;
    height: auto;
    background: #fff;
    z-index: 100;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    /* padding-bottom: 10px; */

}

.active-header-content{
    background-color: #ffffff;
}

#menu {
	background: #007638;
	height: 65px;
	padding-left: 5px;
	border-radius: 10px;
    margin: 0px 10px 0px 10px;
}
#menu ul, #menu li {
	margin: 0 auto;
	padding: 0;
	list-style: none
}
#menu ul {
	width: 100%;
	text-align: left;
}
#menu li {
	display: inline-block;
	position: relative;
}
#menu a {
	display: block;
	padding: 18px;
	text-decoration: none;
	color: #FFFFFF;
	font-size: 14px;
    border-radius: 6px;
    margin-top: 5px;
}

.menu-button {
    display: block;
	padding: 18px;
	text-decoration: none;
	font-size: 14px;
    border-radius: 6px;
    margin-top: 5px;
    background: none;
    text-align: left;
    box-shadow: none;
    border: none;
    cursor: pointer;
}

.menu-button:hover {
	color: #444444;
}

#dropdown-arrow:after {
	content: "\23F7";
}
#menu li a:hover {
	color: black;
	background: #ffffff;
}
#menu input {
	display: none;
	margin: 0;
	padding: 0;
	height: 59px;
	width: 100%;
	opacity: 0;
	cursor: pointer
}
#menu label {
	display: none;
	line-height: 59px;
	text-align: center;
	position: absolute;
	left: 35px
}
#menu label:before {
	font-size: 1.6em;
	color: #FFFFFF;
	content: "\2261"; 
	margin-left: 20px;
}
#menu ul.sub-menus{
	height: auto;
	overflow: hidden;
	width: 170px;
	/* background: #316038; */
	position: absolute;
	z-index: 99;
	display: none;
    padding: 5px;
    border-radius: 5px;
}
#menu ul.sub-menus li {
	display: block;
	text-align: left;
	width: 100%;
}
#menu ul.sub-menus a {
	/* color: #FFFFFF; */
	font-size: 14px;
}
#menu li:hover ul.sub-menus {
	display: block
}
#menu ul.sub-menus a:hover{
	/* background: #5BB467; */
	color: #444444;
}

.dropdown-menu {
    display: none;
}

.dropdown-menu.show {
    display: block;
}

/* Style for the dropdown button */
.dropdown-toggle {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background-color: #FFF;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.dropdown-toggle::after {
    content: '▼'; /* Arrow symbol */
    font-size: 12px;
    margin-left: 10px;
}

/* Style for the dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px; /* Control the height of the dropdown */
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #FFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: none; /* Hidden by default */
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
}

/* Style for dropdown items */
.dropdown-menu li {
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Hover effect for dropdown items */
.dropdown-menu li:hover {
    background-color: #f0f0f0;
}

#quillEditorContainer .ql-editor, 
#quillPeoTitleEditorContainer .ql-editor, #quillPeoDescriptionEditorContainer .ql-editor, #quillPeoSubdescriptionEditorContainer .ql-editor, 
#quillSoTitleEditorContainer .ql-editor, #quillSoDescriptionEditorContainer .ql-editor, #quillSoSubdescriptionEditorContainer .ql-editor{
    background-color: #FFFF !important;
    border-radius: 5px !important;
    padding: 25px 15px;
}

#quillEditorContainer .ql-editor.ql-blank::before, 
#quillPeoTitleEditorContainer .ql-editor.ql-blank::before, #quillPeoDescriptionEditorContainer .ql-editor.ql-blank::before, #quillPeoSubdescriptionEditorContainer .ql-editor.ql-blank::before,
#quillSoTitleEditorContainer .ql-editor.ql-blank::before, #quillSoDescriptionEditorContainer .ql-editor.ql-blank::before, #quillSoSubdescriptionEditorContainer .ql-editor.ql-blank::before {
    font-style: normal; /* Change to 'normal' or any other style you prefer */
    opacity: 1;         /* Ensure the placeholder is fully visible */
}

.quill-editor-container-newfeature .ql-editor {
    background-color: #FFFF !important;
    border-radius: 5px !important;
    padding: 25px 15px !important;
}

.quill-editor-container-newfeature .ql-editor.ql-blank::before {
    font-style: normal; 
    opacity: 1;  
}

.chart-parent-container, .chart-parent-container-preview {
    /* border: 2px solid black;  */
    background-color: #ffffff; /* Light background for the container */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Shadow for a 3D effect */
    border-radius: 5px;
    margin-top: 7px;
    width: 100%;
    height: auto; /* Set a fixed height or adjust as needed */
    position: relative;
    overflow: hidden; /* Prevent scrollbars */
}

.chart-container, .chart-container-preview {
    width: 100%;
    height: 100%;
    max-height: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    transform-origin: center center; /* Set transform origin to top center */
    transition: transform 0.3s ease; /* Smooth transition for scaling */
    overflow: hidden;
}

#chart-container::-webkit-scrollbar, .chart-parent-container::-webkit-scrollbar {
    width: 5px;
}

#chart-container::-webkit-scrollbar-thumb, .chart-parent-container::-webkit-scrollbar-thumb {
    background: rgb(96, 96, 96);
}

#chart-container::-webkit-scrollbar-track {
    border-radius: 0px;
}

.custom-node {
    padding: 3px;
    border-radius: 6px;
    background-color: white;
    border: 1px solid #000000;
    display: flex;
    flex-direction: column;
    gap: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.node-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.node-image {
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #007638;
    flex-shrink: 0;
}

.node-details {
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.node-text-wrapper {
    width: 100%;
    height: 20px; /* Adjust based on your needs */
    margin: 2px 0;
    overflow: hidden;
}

.node-name {
    font-weight: bold;
    margin-bottom: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.node-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hidden-node {
    display: none !important;
}

.node-actions {
    display: flex;
    justify-content: center;
}

.add-member-node-btn {
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    justify-content: center;
}

.add-member-node-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.add-member-node-btn i {
    margin-right: 5px;
}

.delete-member-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.delete-member-btn:hover {
    opacity: 1;
}

.custom-node img {
    border-radius: 50%; /* Circular image */
    border: 2px solid #000000; /* Light border around the image */
    width: 60px; /* Fixed width for image */
    height: 60px; /* Fixed height for image */
    margin-right: 15px; /* Space between the image and text */
    margin-left: 15px;
}

.custom-node .details {
    font-size: 14px; /* Text size */
    line-height: 1.5; /* Line height for better readability */
    text-align: left;
}

.custom-node .node-name {
    font-weight: bold; /* Bold name */
    font-size: 16px; /* Larger font size for name */
}

.custom-node .node-title {
    font-style: italic; /* Italic title */
    margin-bottom: 5px; /* Space below the title */
}

/* Ensure the Treant container and its SVG scale properly */
.Treant {
    position: relative;
    width: auto !important; /* Force full width */
    height: auto !important; /* Force full height */
    transition: transform 0.3s ease;
    transform-origin: center center;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.Treant .node {
    width: auto;
    position: absolute;
}

.ql-toolbar.ql-snow {
    border-radius: 5px 5px 0 0 !important;
}

.ql-container {
    border-bottom-left-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}



.ql-editor {
    font-size: 16px;
}

/* Breadcrumb Navigation Styles */
.breadcrumb {
    display: -webkit-inline-box;
    overflow-x: auto;
    list-style: none; /* Remove default list styling */
    padding: 10px; /* Add some padding */
    margin: 0; /* Remove default margin */
    background-color: #f8f9fa; /* Light background color */
    border-radius: 5px; /* Rounded corners */
    font-size: 14px;
}

.breadcrumb::-webkit-scrollbar {
    display: none;
}

.breadcrumb-item {
    margin-right: 0px; /* Space between items */
}

.breadcrumb-item a {
    font-weight: bold;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d; /* Color for the active item */
    font-weight: normal; /* Normal weight for active item */
}

/* Separator */
.breadcrumb-item::after {
    content: '/'; /* Separator character */
    margin-left: 10px; /* Space after the separator */
    margin-right: 10px; /* Space before the next item */
    color: #6c757d; /* Color for the separator */
}

.breadcrumb-item:last-child::after {
    content: ''; /* Remove separator after the last item */
}

.links {
    display: flex;
    align-items: center;
    margin-left: auto; /* Push other links to the left */
    /* margin-right: 37px; */
    padding-left: 20px;
    background: #007638;
    border-top: 5px solid #F8C021;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.toggle {
    display: none;
    z-index: 1000;
    position: fixed;
    top: 5px;
    left: 5px;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background-color: #1e3b22;
    cursor: pointer;
}

.hamburger{
    position: relative;
    top: calc(50% - 2px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    border-radius: 20px;
}

.hamburger > span, 
.hamburger > span::before, 
.hamburger > span::after{
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 20px;
    background-color: #ffffff;
    transition-duration: 0.25s;
}

.hamburger > span::before{
    content: "";
    top: 9px;
}

.hamburger > span::after{
    content: "";
    top: -9px;
}

.toggle.active .hamburger > span{
    transform: rotate(45deg);
}

.toggle.active .hamburger > span::before{
    top: 0;
    transform: rotate(0deg);
    border-radius: 20px;
}

.toggle.active .hamburger > span::after{
    top: 0;
    transform: rotate(90deg);
    border-radius: 20px;
}

/* @media screen and (max-width: 1024px){
    .toggle{
        max-width: 250px;
    }
} */

.icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.icon-grid i {
    font-size: 24px;
    cursor: pointer;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 5px;
}

.display-email {
    color: #171717; 
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    border-radius: 5px;
    padding: 5px;
    align-items: center;
    text-align: center;
    user-select: none;
    width: 100%;
    margin-bottom: 1.5rem;
    box-sizing: border-box;
    background: #f4f4f4;
}

.main-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    /*
    display: flex;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    flex-wrap: wrap;
    justify-content: center;
    */
}

.column1{
    flex: 20; 
    /* height: 100%; */
    width: auto;
    margin: 10px;
    margin-top: 125px;
}

.content-inside-form {
    width: auto;
    height: 100%;
    border-radius: 6px;
    color: #000;
    text-align: left;
    cursor: default;
    box-sizing: border-box;
    border: none;
    flex-grow: 1;
    overflow-y: auto; /* Add vertical scroll if content overflows */
    padding: 10px;
}

.content-container {
    position: relative;
    width: auto;
    height: auto;
    box-sizing: border-box;
    flex-grow: 1;
    overflow-y: auto; /* Add vertical scroll if content overflows */
    box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 53%);
    /* background-color: #007638; */
    border-radius: 10px;
    color: #000000;
    text-align: left;
    cursor: default;
    padding: 8px;
    margin-bottom: 15px;
}

/* .content-container:nth-child(odd) {
    background: #f9fffa;
}

.content-container:nth-child(even) {
    background: #eefff1;
} */

.content-container-con {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.content-main {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.media-container {
    max-height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.media-container img,
.media-container video {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
}

.message-wrapper {
    position: relative;
    flex: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.content-details {
    margin-top: 5px;
}

.field-title, .display-time {
    margin-top: 4px;
    color: #6E6E6E;
    font-size: 13px;
}

.scroll-div {
    height: 450px;
    /* border-radius: 10px; */
    overflow: auto;
}

.announcement-card {
    width: auto;
    height: auto;
    background-color: #1e3b22;
    border-radius: 6px;
    color: #FFFF;
    text-align: left;
    cursor: default;
    box-sizing: border-box;
    border: none;
    flex-grow: 1;
    padding: 5px;
    margin-bottom: 5px;
    overflow-y: auto; /* Add vertical scroll if content overflows */
}

.carousel {
    position: relative;
    width: 100%;
    height: 325px;
    overflow: auto;
}


.carousel-item {
    display: none; 
    height: calc(100% - 20px);
}


.carousel-item-2 {
    display: none;
    width: 100%;
    height: 100%;
    animation: fadeIn 2s ease-out;
}

.carousel-item-2.active {
    display: flex;
    flex-direction: column;
}

.carousel-control {
    top: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 10px;
    cursor: pointer;
    font-weight: bolder;
}

.cms-logo-topnav{
    margin: 11px;
    width: 50px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.cms-logo-sidebar{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    width: 40%;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.cms-logo-sidebar2{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    width: 90%;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.display-info-form{
    font-size: 12px;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #007638;
    color: #fff;
    border: none;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    width: auto;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.content-form {
    width: auto; /* Set a maximum width for the content container */
    color: #000;
    text-align: justify;
    font-size: 12px;
    cursor: default;
    height: auto;
    padding-bottom: 70px;
}

.button-container {
    width: 25%;
    height: 90px;
    box-sizing: border-box;
    padding-right: 8px;
    padding-bottom: 8px;
}

.content-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.25); */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid black;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    transition: transform .3s ease; /* Animation */
}

.content-button:hover {
    background: #e2e2e2;
    color: #000000;
    transform: scale(1.02);
}

.button-icon {
    display: flex;
    color: white;
    height: 100%;
    align-items: center;
    padding: 20px;
    width: 30px;
    text-align: center;
    place-content: center;
    flex-wrap: wrap;
}

.button-icon i {
    font-size: 25px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.button-text {
    text-align: left;
    padding-left: 10px;
    background: none;
    color: black;
    font-size: 15px;
    width: auto;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.button-text-2 {
    flex: 1;
    /* background-color: #f3fff5; */
    color: black;
    font-size: 15px;
}

.button-icon-2 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #f3fff5; */
    padding-top: 20px;
}

.button-icon-2 i {
    font-size: 60px;
    color: #000;
}

.modal {
    display: none;      /*none*/
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.576);
    backdrop-filter: blur(3px);
}

.modal-content {
    background-color: #ffffff;
    padding: 15px;
    text-align: center;
    width: 90%;
    max-width: 400px; /* Set a maximum width if needed */
    border-radius: 5px;
    font-size: 20px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.modal-content-preview {
    background-color: #fefefe;
    width: 100%;
    max-width: 850px;
    padding: 7px;
    border-radius: 5px;
    font-size: 20px;
    margin: 10px;
}

.modal-error-message {
    background-color: #fefefe;
    width: 100%;
    max-width: 250px;
    border-radius: 6px;
    font-size: 16px;
    margin: 10px;
}

.error-message {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.success-message {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.red-button {
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 5px;
    /* border: 1px solid rgb(126, 11, 34); */
    cursor: pointer;
    transition: background-color 0.3s;
    /* color: #ffffff; */
    text-decoration: none;
    /* background-color: rgb(126, 11, 34); */
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.red-button:hover {
    /* background: rgb(173, 15, 46); */
    transition: 0.5s ease;
}

.green-button {
    /* background-color: #316038; */
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 5px;
    border: 1px solid #007638;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
    margin-right: 5px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.green-button:hover {
    /* background: #326639; */
    transition: 0.5s ease;
}

.grey-button {
    background-color: #334b353b;
    color: black;
    padding: 8px 16px;
    border-radius: 5px;
    border: 1px solid #808080;
    cursor: pointer;
    transition: background-color 0.3s;
}

.grey-button:hover {
    background: #2231233b;
    transition: 0.5s ease;
}

.select-button {
    background-color: #ffffff3b;
    color: black;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #808080;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-button:hover {
    background: #e0e0e03b;
    transition: 0.5s ease;
}

.light-green-button {
    /* background-color: #aad3b0; */
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 5px;
    /* border: 1px solid #3e7a47 ; */
    cursor: pointer;
    transition: background-color 0.3s;
}

.light-green-button:hover {
    /* background: #3e7a47; */
    /* color: #fff; */
    transition: 0.5s ease;
}

.yellow-button {
    background-color: #dc7d09;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    border: 1px solid #e37f04;
    cursor: pointer;
    transition: background-color 0.3s;
}

.yellow-button:hover {
    background: #ae6902;
    transition: 0.5s ease;
}


.cancel-button {
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
    color: #334b35;
    text-decoration: none;
    background-color: #334b353b;
    border: none;
    margin-right: 5px;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.cancel-button-2 {
    width: 100%;
    box-sizing: border-box;
    background: #334b353b;
    color: #007638;
    border: none;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: block; 
    cursor: pointer;
}

.confirm-button {
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
    background-color: #334b35;
    border: none;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.green-bar-vertical {
    flex-basis: 10%;
    position: relative;
    margin-left: 20px;
    padding-right: 5px;
}

.green-bar-vertical::after {
    content: '';
    width: 10px;
    height: 100%;
    background: linear-gradient(#007638, #478b50);
    position: absolute;
    left: -18px;
    top: 2px;
}

.red-bar-vertical {
    flex-basis: 10%;
    position: relative;
    margin-left: 20px;
    padding-right: 5px;
}

.red-bar-vertical::after {
    content: '';
    width: 10px;
    height: 96.5%;
    background: linear-gradient(#862b2b, rgba(152, 12, 40, 0.859));
    position: absolute;
    left: -18px;
    top: 2px;
}

.yellow-bar-vertical {
    flex-basis: 10%;
    position: relative;
    margin-left: 20px;
    padding-right: 5px;
}

.yellow-bar-vertical::after {
    content: '';
    width: 10px;
    height: 96.5%;
    background: linear-gradient(#f7c374, #daa34ffe);
    position: absolute;
    left: -18px;
    top: 2px;
}

.plus-button {
    width: 190px;
    padding: 5px;
    border-radius: 20px;
    color: black;
    text-decoration: none;
    background-color: none;
    border: 1px solid black;
    cursor: pointer;
    margin-right: 10px;
    margin-bottom: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.plus-button:hover {
    background: #326639;
    transition: 0.5s ease;
    color: white;
}

.delete-peo-button, .delete-so-button {
    width: 80px;
    padding: 5px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    background-color: #7E0B22;
    border: 1px solid black;
    cursor: pointer;
    margin-left: 10px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.content-grid-container {
    overflow-x: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr)); 
}

.split-container{
    display: flex;
    margin-bottom: 8px;
}

.start-container {
    display: flex;
    gap: 10px; /* Adjust the gap between date and time inputs */
}

.input-date,
.input-time,
.input-datetime {
    width: 100%;
    padding: 5px;
    margin-bottom: 5px;
    box-sizing: border-box;
    font-size: 14px;
    background-color: #fff;
    border-radius: 5px;
    box-sizing: border-box;
    border: #0000004b solid 1px;
}

.table-container {
    overflow-x: auto;
    margin-top: 10px;
}

#usersTable, #smartTVsTable {
    width: 100%;
    border-collapse: collapse;
}

#usersTable thead, #smartTVsTable thead {
    position: sticky;
    top: 0;
    z-index: 1;
}

#userTableContainerParent::-webkit-scrollbar-thumb, #smartTVsTableContainerParent::-webkit-scrollbar-thumb {
    background-color: #bcbcbc;
}

#userTableContainerParent::-webkit-scrollbar-track, #smartTVsTableContainerParent::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #dddddd;
    padding: 8px;
    text-align: left;
    font-size: 16px;
    text-align: center;
}

th {
    background-color: #f2f2f2;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

.nav-button {
    background: none;
    border: none;
    color: #ffff;
    font-size: 18px;
    cursor: pointer;
    padding: 2px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    user-select: none;
}

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

.tab button:hover {
    background-color: #ddd;
}

.tab button.active {
    background-color: #ccc;
}

.tabcontent {
    display: none;
    padding: 12px;
    border: 1px solid #ccc;
    border-top: none;
}

.view-all-notifications-container, .view-all-archives-container {
    display: flex;
    flex-direction: row;
    word-break: break-word;
    height: 95%;
}

.notifications-tab, .archives-tab {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    user-select: none;
    width: 145px;
}

.notifications-tablinks, .archives-tablinks {
    text-align: right;
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

.notifications-tablinks:hover, .archives-tablinks:hover {
    background-color: #ddd;
}

.notifications-tablinks.active, .archives-tablinks.active {
    background-color: #ccc;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
}

.notifications-tabcontent, .archives-tabcontent {
    display: none;
    padding: 12px;
    border: 1px solid #ccc;
    border-top: none;
}

.notification-count {
    display: none;
    background: red;
    color: white;
    padding: 5px;
    border-radius: 3px;
    border: rgb(171, 0, 0) 1px solid;
    font-weight: bold;
    font-size: 10px;
    position: absolute;
    left: 15px;
    top: 8px;
}

.notifications-button-mobile-container {
    display: none;
}

.notification-count-mobile {
    display: none;
    background: red;
    color: white;
    padding: 5px;
    border-radius: 3px;
    border: rgb(171, 0, 0) 1px solid;
    font-weight: bold;
    font-size: 10px;
    position: absolute;
    right: 33px;
    top: 30px;
}

.all-notifications-count, 
.pending-notifications-count,
.approved-notifications-count, 
.rejected-notifications-count, 
.restored-notifications-count, 
.archived-notifications-count, 
.deleted-notifications-count,
.updated-notifications-count,
.trashed-notifications-count,
.all-notifications-count-2,
.all-notifications-count-mobile {
    background: none;
    color: rgb(123, 123, 123);
    padding: 2px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 15px;
    margin-left: 5px;
}

.archives-content-count, .trash-content-count, .approved-content-count, .rejected-content-count, .pending-content-count{
    background: none;
    color: rgb(133, 178, 117);
    padding: 2px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
    margin-left: 5px;
    margin-top: 2px;
    position: relative; 
    top: 1px;
}

.trash-content-button-count, .archived-content-button-count, .approved-content-button-count, .rejected-content-button-count, .pending-content-button-count {
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 20px;
    margin-left: 5px;
}

.evaluator-message-notification {
    font-size: 14px;
    color: #6E6E6E;
    font-style: bold;
    padding-top: 8px;
    padding-bottom: 8px;
}

.created-at-notification, .department-notification {
    font-size: 12px;
    color: #6E6E6E;
    font-style: bold;
}

.notification {
    background-color: #e6ffe6;
    color: #2f4f4f;
    border-left: 5px solid #2e8b57;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease;
    position: relative;
    user-select: none;
    padding-right: 30px;
}

.notifications-container {
    overflow-y: auto;
    height: 325px;
    word-break: break-word;
    padding-right: 8px;
}

.notifications-container-mobile {
    overflow-y: auto;
    height: 325px;
    word-break: break-word;
    padding-right: 8px;

    
}

.notification-details {
    display: flex;
    flex-direction: column;
}

.notification-buttons-non-deletable {
    display: flex;
    flex-direction: row;
    gap: 5px;
    margin-top: 10px;
}

.notification-buttons-deletable {
    display: flex;
    flex-direction: row;
    gap: 5px;
    margin-top: 10px;
}

.view-button-container {
    display: flex;
    flex-direction: row;
    gap: 5px;
    margin-top: 10px;
}

.delete-notification {
    position: absolute;
    right: 5px;
    top: 5px;
    border: none;
    color: #000000;
    font-size: 18px;
    cursor: pointer;
    padding: 2px;
    background: none;
    user-select: none;
    float: right;
}

.user-details-table {
    width: 100%;
    border-collapse: collapse;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
}

.user-details-table th, .user-details-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.user-details-table th {
    font-weight: bold;
    width: 30%;
}

.page-indicator-container {
    flex: 1;
    justify-content: center;
    text-align: center;
    padding-top: 4px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/* Dropdown Button */
.dropbtn {
    color: white;
    background: #007638;
    font-size: 16px;
    border: none;
    margin-right: 10px;
    font-size: 20px;
    cursor: pointer;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
}

.dropdown {
    position: relative;
    display: inline-block;
}
  
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    left: -120px; 
    border-radius: 5px;
}
  
/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
  
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

.notifications-button {
    color: white;
    background: none;
    font-size: 16px;
    border: none;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
}

.notifications-button-mobile {
    display: none;
    width: 50px;
    height: 50px;
    color: #333333;
    position: fixed;
    right: 5px;
    top: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.dropdown-notifications {
    position: relative;
    right: 0;
    background-color: white;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    width: 450px;
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
    border-radius: 10px;
    transition: 0.5s ease;
}

.dropdown-notifications-mobile {
    position: relative;
    right: 0;
    background-color: white;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    width: 450px;
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
    border-radius: 10px;
    transition: 0.5s ease;
}

.triangle {
    display: none; /* Initially hidden */
    position: absolute;
    top: 22px;
    left: 3px;
    height: 15px;
    width: 15px;
    border-radius: 6px 0px 0px 0px;
    transform: rotate(45deg);
    background: white;
    z-index: 100;
}

.triangle-mobile {
    display: none; /* Initially hidden */
    position: absolute;
    top: 56px;
    right: 15px;
    height: 30px;
    width: 30px;
    border-radius: 6px 0px 0px 0px;
    transform: rotate(45deg);
    background: white;
    z-index: 100;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.form-column {
    display: flex;
    flex-direction: column;
}

.ann-body, .eve-body, .news-body {
    white-space: pre-wrap; /* Preserve line breaks and allow text wrapping */
}

.level-container{
    border: 1px solid black;
    border-radius: 5px;
    padding: 5px;
}

.close {
    float: right;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    text-decoration: none;
    cursor: pointer;
}

.tv-frame-parent {
    width: 100%;
    height: 100vh;
    margin: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f0f0f0; /* Optional: Add a background color */
    cursor: grab;
    background-image: linear-gradient(rgba(79, 79, 79, 0.7) .1em, transparent .1em), linear-gradient(90deg, rgba(82, 82, 82, 0.7) .1em, transparent .1em);
    background-size: 3em 3em;
    border-radius: 5px;
}

.tv-frame-parent::-webkit-scrollbar{
    width: 0px;
    display: none;
}

.tv-frame {
    position: absolute;
    padding: 5px; /* Centers the frame horizontally */
    /* overflow: auto; */
    margin: auto;
    transform-origin: center; 
    transition: transform 0.2s ease;
    border: 2px solid black;
    border-radius: 5px;
    user-select: none;
    background: #000000;
}

.tv-stand {
    width: 40%;
    height: 20px;
    background-color: #040404;
    border-radius: 0 0 10px 10px;
    margin-top: 5px;
    position: relative;
    top: 27px;
}

.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.loader {
    border: 10px solid #f3f3f3; /* Light grey */
    border-top: 10px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 15px;
    height: 15px;
    animation: spin 2s linear infinite;
    align-items: center;
    justify-content: center;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tv-screen {
    /* border: 15px solid black; */
    border-radius: 5px;
    /* transform: scale(0.8); */
    user-select: none;
    -webkit-user-select: none;
}

.toolbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: black;
}

.scale-buttons {
    position: absolute;
    padding-top: 5px;
    padding-bottom: 5px;
    right: 0;
    top: 0;
    z-index: 10;
}

.scale-buttons button {
    margin-left: 5px;
    border-radius: 5px;
    cursor: pointer;
}

.scale-buttons-2 {
    position: fixed;
    padding-top: 5px;
    padding-bottom: 5px;
    z-index: 9999;
    top: 185px;
    left: 25px; 
    display: flex; 
    flex-direction: column; 
    gap: 10px;
    transition: left 0.4s ease;
}

.scale-buttons-2 button {
    background-color: #007638;
    color: white;
    padding: 5px 10px;
    margin-left: 5px;
    border-radius: 5px;
    cursor: pointer;
}

.scale-buttons-2.open {
    left: 280px;
}

.close-sidebar-button {
    display: none;
}

.close-sidebar-button.open{
    display: block;
}

.open-sidebar-button {
    display: none;
}

.open-sidebar-button.open{
    display: block;
}

input[type="checkbox"]{
    cursor: pointer;
}

.option-div {
    display: flex;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
    background: #f3f3f3;
    padding: 15px;
    border-radius: 5px;
    user-select: none;
}

.option-div-container-color {
    display: flex; 
    flex-direction: column; 
    border-radius: 5px; 
    /* box-shadow: -2px 0 5px rgba(0,0,0,0.5); */
}

.option-div-color {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    background: #f3f3f3;
    padding: 15px;
    border-radius: 5px;
}

input[type="color"] {
    margin-right: 5px;
}

/* When the checkbox is checked */
input[type="checkbox"]:checked + label::before {
    background-color: #007bff;
    border-color: #007bff;
}



/* Show the checkmark/indicator when checked */
input[type="checkbox"]:checked + label::after {
    opacity: 1;
}

/* .tv-brand {
    position: absolute;
    top: 87.5%; 
    left: 47.5%; 
    width: auto; 
    height: auto;
    color: white;
    font-weight: bold;
    user-select: none;
} */

/* .ui-resizable {
    position: relative;
}
.ui-resizable-handle {
    position: absolute;
    z-index: 90;
    display: none;
}
.ui-resizable:hover .ui-resizable-handle {
    display: block;
} */

input[type=range] {
    height: 20px;
    -webkit-appearance: none;
    width: 100%;
    background: none;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #000000;
    background: #d8d8d8;
    border-radius: 50px;
    border: 0px solid #000000;
}

input[type=range]::-webkit-slider-thumb {
    box-shadow: 0px 0px 1px #000000;
    border: 1px solid #000000;
    height: 25px;
    width: 48px;
    border-radius: 5px;
    background: #FFFFFF;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -8px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: #c2c2c2;
}
input[type=range]::-moz-range-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #000000;
    background: #3071A9;
    border-radius: 50px;
    border: 0px solid #000000;
}
input[type=range]::-moz-range-thumb {
    box-shadow: 0px 0px 1px #000000;
    border: 1px solid #000000;
    height: 25px;
    width: 48px;
    border-radius: 5px;
    background: #FFFFFF;
    cursor: pointer;
}
input[type=range]::-ms-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    color: transparent;
}
input[type=range]::-ms-fill-lower {
    background: #3071A9;
    border: 0px solid #000000;
    border-radius: 100px;
    box-shadow: 0px 0px 0px #000000;
}
input[type=range]::-ms-fill-upper {
    background: #3071A9;
    border: 0px solid #000000;
    border-radius: 100px;
    box-shadow: 0px 0px 0px #000000;
}
input[type=range]::-ms-thumb {
    margin-top: 1px;
    box-shadow: 0px 0px 1px #000000;
    border: 1px solid #000000;
    height: 25px;
    width: 48px;
    border-radius: 5px;
    background: #FFFFFF;
    cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
    background: #3071A9;
}
input[type=range]:focus::-ms-fill-upper {
    background: #3071A9;
}

.scale-control{
    padding: 10px;
    background: #e9e9e9;
    border-radius: 5px;
    margin: 0;
    margin-top: 20px;
}

/* left-side panel styling */
.left-side-panel {
    position: absolute;
    left: -400px; /* Hidden initially */
    top: 0;
    /* width: 360px; */
    height: 100%;
    background: none;
    border-left: 1px solid #ccc;
    transition: left 0.4s ease;
    padding-left: 10px;
    padding-top: 10px;
}

.left-side-panel.open {
    left: 0; /* Show the panel */
}

.left-sidebar {
    position: absolute;
    left: -400px; /* Hidden initially */
    top: 0;
    /* width: 360px; */
    height: 100%;
    background: none;
    border-left: 1px solid #ccc;
    transition: left 0.4s ease;
    padding-left: 10px;
    padding-top: 10px;
}

.left-sidebar.open {
    left: 0; /* Show the panel */
}

.panel-close-btn {
    display: block;
    text-align: right;
    margin-bottom: 10px;
}

.panel-close-btn button {
    background: none;
    border: none;
    cursor: pointer;
}

.days-input {
    width: 60px; 
    border: none; 
    background: none; 
    box-shadow: none; 
    text-align: center; 
    font-size: 16px;
}

.days-input:focus {
    outline: none;
    border: none;
    background: none;
    box-shadow: none;
}

.button-container-mobile {
    display: none;
}

.button-container-desktop {
    display: -webkit-inline-box;
}

.floating-menu {
    position: fixed;
    background: none;
    border-radius: 4px;
    padding: 5px;
    z-index: 1000;
}

.floating-menu button {
    background: #007638;
    color: white;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}

.floating-menu button:hover {
    background: #1a331d;
}

.user-type-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    margin-top: 8px;
}

.user-type-pill {
    background-color: #007638;
    color: white;
    padding: 5px 8px;
    border-radius: 12px;
    font-size: 12px;
    white-space: nowrap;
}

.theme-container {
    border-radius: 10px;
    box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 53%);
}

.user-details-container {
    box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 53%);
    border-radius: 10px;
    
}

.color-carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
}

.color-option-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 5px;
}


.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.color-option:hover {
    transform: scale(1.1);
}

.color-option.active {
    border: 3px solid #000;
}

.color-label {
    font-size: 12px;
    color: #666;
    text-align: center;
}

.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Prevent modal from being closed by clicking outside */
#loadingModal.modal {
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

#loadingModal .modal-content {
    pointer-events: auto;
}

.orgchart-container, .orgchart-container-parent {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: transparent;
}

.orgchart-content {
    /* position: absolute;
    width: auto; 
    height: auto;
    transform-origin: center center;
    transition: transform 0.3s ease; */

    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.orgchart-content svg {
    width: 100%;
    height: 100%;
}

.online-status {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

.tv-id {
    flex: 1; /* Takes up available space */
    padding-left: 10px;
    display: flex;
    flex-direction: row;
}

.tv-id-text {
    display: flex;
    flex-direction: column;
    align-self: center;
    margin-left: 10px;
}

.preview-iframe-wrapper {
    position: relative;
    background: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
}

.form-title-container {
    padding: 15px;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.form-title {
    font-weight: normal;
    color: white;
    font-size: 15px;
    text-align: left;
}

/* Media query for smaller screens */
@media only screen and (max-width: 1000px) {
    .container-body {
        display: flex;
        flex-direction: column; /* Stack containers vertically on smaller screens */
        align-items: center;
        max-width: 500px; /* Set a maximum width for the container */
        width: 100%;
        box-sizing: border-box;
        padding: 10px; /* Add padding for better spacing */
        margin: 20px;
        border-radius: 15px;
        background: none;
        box-shadow: none;
        backdrop-filter: none;
    }

    .logo-header-2 {
        display: block;
    }

    .logo-header {
        display: none;
    }

    .view-all-notifications-container, .view-all-archives-container {
        flex-direction: column;
    }

    .notifications-tab, .archives-tab {
        display: block;
        width: 99%;
        display: -webkit-inline-box;
        margin-bottom: 10px;
        height: 50px;
    }

    .notifications-tab::-webkit-scrollbar, .archives-tab::-webkit-scrollbar {
        display: none;
    }

    .notifications-button-mobile-container {
        display: block;
    }

    .notifications-button-mobile {
        display: block;
    }

    .soe-logo, .usc-logo {
        max-width: 100%; /* Ensure the USC icon doesn't overflow its container */
        height: auto;
        width: 100px;
        padding: 0;
        margin: 0;
    }

    .logo-flex{
        display: flex;
        flex-direction: row;
    }

    .archives-buttons-flex, .trash-buttons-flex, .approved-contents-buttons-flex, .pending-contents-buttons-flex, .rejected-contents-buttons-flex {
        flex-direction: column;
        padding-left: 0;
        padding-right: 0;
    }

    .logo-header-container {
        padding-top: 8px;
        padding-left: 0;
    }
    
    .logo-header {
        width: 200px;
    }
    
    .top {
        border-radius: 15px 15px 0px 0px;
        height: auto;
        margin: 0;
        padding-top: 20px;
        padding-bottom: 20px;
        background: linear-gradient(159deg, rgba(33, 156, 80, 0.15) 0%, rgba(0, 0, 0, 0.484) 100%);
        box-shadow: 10px 10px 20px 5px rgba(0, 0, 0, 0.14) inset;
        backdrop-filter: blur(10px);
        align-items: center;
        justify-items: center;
        text-align: center;
    }

    .bottom {
        background: rgb(255, 255, 255);
        border-radius: 0px 0px 15px 15px;
        backdrop-filter: blur(5px);
        height: auto;
        margin: 0;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .main-section{
        margin-right: 0;
        margin-left: 0;
        margin-top: 70px;
    }

    .sidebar{
        position: fixed;
        top: 0;
        left: -1000px;
        height: 100vh;
        transition: 0.4s ease;
        z-index: 200;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 50px 0 rgba(0, 0, 0, 0.3);
    }

    .sidebar.active{
        left: 0;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 50px 0 rgba(0, 0, 0, 0.3);
    }

    .topnav{
        display: block;
    }

    .toggle{
        display: block;
    }

    .content-button{       
        margin: 5px;
    }

    .button-container {
        width: 100%;
        box-sizing: border-box;
        padding-right: 0;
        padding-bottom: 12px;
    }

    .split-container{
        flex-direction: column;
    }

    .rounded-container{
        flex-direction: column;
    }

    .rounded-container-invi{
        flex-direction: column;
    }

    .left-flex{
        margin-right: 0px;
    }

    .left-textarea-flex {
        margin-right: 0;
    }

    .rounded-container-media{
        margin-left: 0px;
    }

    .edit-button, .delete-button, .approve-button, .decline-button {
        margin-bottom: 5px;
    }

    .flex-preview-content{
        flex-direction: column;
        display: block;
    }

    .preview-input {
        margin: 0;
        margin-top: 7px;
    }

    .preview-content {
        padding: 0;
        max-width: 100%;
    }

    .preview-website {
        width: 100%;
        height: 250px;
        background: #000914;
        margin: 0;
        padding: 0px;
        justify-content: center;
        align-items: center;
    }

    .modal-content-preview {
        height: auto;
    }

    .button-text{
        padding-bottom: 0;
    }

    .cms-logo-sidebar {
        width: 60px;
        height: 60px;
    }

    .cms-logo-sidebar2 {
        width: 160px;
        height: 50px;
    }

    .header {
        height: 65px;
        display: flex;
        border-bottom: 5px solid #F8C021;
        padding-bottom: 0px;
        justify-content: center;
    }

    #menu {
        display: none;
    }

    .column1 {
        margin-top: 15px;
    }

    .content-grid-container {
        display:inline;
    }

    .flex-button-modal {
        margin-right: 8px;
    }

    .form-row {
        display: flex;
        flex-direction: column;
        flex-wrap: none;
    }

    .input-flex-profile {
        flex-direction: column;
    }

    .left-side-input-profile {
        margin-right: 0;
    }

    .container-indicators {
        flex-direction: column;
    }

    .option-div {
        width: auto;
    }

    .left-sidebar {
        left: -400px;
    }

    .left-sidebar.open {
        left: 0;
    }

    .scale-buttons-2 {
        left: 25px;
        top: 145px;
    }

    .scale-buttons-2.open {
        left: 280px;
    }

    .open-sidebar-button {
        display: none;
    }

    .open-sidebar-button.open{
        display: block;
    }

    .close-sidebar-button.open{
        display: block;
    }

    .notification {
        flex-direction: column;
        transition: background-color 0.3s ease;
        align-items: baseline;
        gap: 10px;
    }

    .button-container-mobile {
        display: -webkit-inline-box;;
    }

    .button-container-desktop {
        display: none;
    }
    
}

/* CSS FOR THE TV  */
.topbar {
    height: 7.0vh;
    width: 100%;
    /* background: #007638; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.device-id {
    flex: 1; /* Takes up available space */
    font-size: 1.5vh;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
}

.tv-name {
    flex: 1; /* Takes up available space */
    font-size: 3.0vh;
    text-align: center;
    font-weight: bold;
}

.date-time {
    flex: 1; /* Takes up available space */
    text-align: right;
    font-size: 2.5vh;
    padding-right: 10px;
    display: flex;
    flex-direction: column; /* Stack items vertically */
}

#live-clock {
    margin-bottom: 2px; /* Adjust the margin as needed */
    display: block;
    font-weight: 700;
}

#live-date {
    display: block;
    color: #55F48B;
}

.validator-message {
    color: #ff4444;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}