body {
    margin: 0;
    font-family: Helvetica, Arial, sans-serif;
    overflow: hidden;
}

.header-logo {
    width: 410px;
}

.desktop-header {
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    box-shadow: 0px 4px 6px -2px #ebebeb;
}

.mobile-header {
    display: none;
}

.sidebar {
    width: 15%;
    min-width: 250px;
    height:auto;
    min-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    background-color: #532964;
}

.mobile-sidebar {
    display: none;
}

.sidebar-container {
    width: 35%;
    display: flex;
    align-items: center;
}

.menu-container {
    width: 50px;
    height: 50px;
    padding-left: 10%;
}

.menu {
    height: 100%;
    background-color: #532964;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
}

.white-outlined-icon {
    color: white !important;
    -webkit-text-stroke: 1px #707070;
    position: relative;
}

.notification-container {
    width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.header-items-border {
    position: absolute;
    top: 100px;
    right: 0;
    width: 100%;
    border: 1px solid #707070;
    background: white;
    display: none;
    flex-direction: column;
    z-index: 1000;
}

.header-items-border.show {
    display: flex;
}

.notification {
    padding: 3%;
    border-bottom: 1px solid #707070;
    font-size: 14px;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-header h3,
.notification-header span {
    margin-top: 0;
    margin-bottom: 2%;
}

.notification-wrapper {
    position: relative;
    display: inline-block;
}

.notification-wrapper i,
.account-container i{
    font-size: 26px;
    color: #606060;
}

.notification-wrapper .badge {
    position: absolute;
    top: 10px;
    right: -12px;
    background-color: red;
    color: white;
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.grey-background {
    background-color: #F4F4F4;
}

.white-background {
    background-color: white;
}

.view-all {
    text-align: center;
    padding: 3%;
    color: #1e88e5;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
}

.logo-container {
    width: 55%;
    padding-left: 15px;
    display: flex;
    align-items: center;
}

.account-container {
    position: relative;
    width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.check-in-container {
    width: 15%;
    display: flex; 
    justify-content: center; 
    align-items: center;
}

.check-in-button {
    width: 65%;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid black;
    border-radius: 5px;
}

.account-trigger {
    display: flex;
    gap: 10px;
    cursor: pointer;
    align-items: center;
}

#account-list {
    left: 50%;
    transform: translateX(-50%);
    padding: 1% 0;
}

#account-list.show {
    display: flex;
}

#account-list a {
    padding: 5%;
    cursor: pointer;
    text-decoration: none;
    color: black;
}

#account-list span:hover {
    background-color: #F4F4F4;
}

#account-list-mobile {
    left: 50%;
    transform: translateX(-50%);
    padding: 1% 0;
}

#account-list-mobile.show {
    display: flex;
}

#account-list-mobile a {
    padding: 5%;
    cursor: pointer;
    text-decoration: none;
    color: black;
}

#account-list-mobile span:hover {
    background-color: #F4F4F4;
}

.main-container {
    display: flex;
    height: calc(100vh - 100px);
}

.scrollable-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #f7f7f7;
    width: 100%;
    padding: 10px 20px 0 20px; 
    box-shadow: 0px 6px 10px -3px #ebebeb;
}

.error-message-list-container {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    background-color: lightcoral;
    border: 1px solid red;
    color: red;
    gap: 10px;
    padding: 10px 0 10px 25px;
    margin-top: 0;
}

.error-message-container {
    width: 145px; 
    height: 45px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    font-weight: bold; 
    margin-left: auto; 
    background-color: lightcoral; 
    border: 1px solid red; 
    color: red; 
    margin-bottom: 20px;
}

.success-message-container {
    width: 200px; 
    height: 45px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    font-weight: bold; 
    margin-left: auto; 
    background-color: lightgreen; 
    border: 1px solid green; 
    color: green; 
    margin-bottom: 20px;
}

.scrollable-center-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #f7f7f7;
    width: 100%;
    padding: 10px 20px 0 20px; 
    box-shadow: 0px 6px 10px -3px #ebebeb;
}

.center {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.side-bar-row.active {
    background-color: #5f3c6e;
}

.sales-detail-container {
    padding: 20px;
    width: 60%;
    max-width: 600px;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: white;
    border: 1px solid #b1b1b1;
    margin-bottom: 16px;
    overflow-x: auto;
    overflow-y: hidden;
}

.sales-detail-container > * {
    min-width: 600px;
}

.sales-chart-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

.chart-container{
    min-width: 600px;
    height: 300px;
}

.outlined-icon{
    color: black;
    -webkit-text-stroke: 1px black;
    color: white;
    position: relative;
}

.header-text-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.header-text-container2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.header-text-container2 i {
    font-size: 1.4em;
    color: black;
}

.header-text{
    font-size: 32px;
    font-weight: 500;
}

.header-icons-group{
    display: flex; 
    flex-direction: row; 
    gap: 15px;
}

.dashboard-details-container{
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 35px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
}

.dashboard-details-box{
    width: 30%;
    min-width: 300px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border: 1px solid #b1b1b1;
    border-radius: 6px;
    background-color: white;
    padding: 20px;
}

.dashboard-details-information{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dashboard-details-information i{
    color: #606060;
    text-align: right;
    font-size: 32px;
}

.button-icon:hover,
.side-bar-row:hover{
    cursor: pointer;
}

.search-bar-container{
    display: flex;
    flex-direction: row;
    position: relative;
}

.search-bar-icon{
    display: flex;
    position: relative;
    left: 25px;
    align-items: center;
    color: #9A9A9A;
}

.search-bar-input{
    padding-left: 30px;
    outline: none;
    color: #707070;
    border: 1px solid #707070;
    border-radius: 6px;
}

.readonly-file {
    outline: none;
    border: 1px solid #707070;
    border-radius: 6px;
    padding: 8px;
    background-color: #E2E2E2;
    color: black;
}

.header-creation-button{
    min-width: 135px;
    height: 100%;
    border-radius: 6px;
    background-color: #FFCD38;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.header-download-button{
    height: 100%;
    border-radius: 6px;
    background-color: white;
    border: 1px solid #707070;
    padding: 0 20px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.creation-button-link,
.download-button-link,
.view-data-link{
    text-decoration: none;
    color: black;
}

.table-container,
.calendar-container{
    background-color: white;
    border: 1px solid #707070;
    padding: 20px;
    margin-bottom: 20px;
}
    
.table-scroll {
    overflow-x: auto;
    max-width: 100%;
}

.table-details {
    width: 100%;
    min-width: 850px;
}

.table-details thead tr {
    height: 50px;
}

.table-details tbody tr {
    height: 65px;
}

.table-header{
    background-color: #C3C3C34D;
}

table {
    border-collapse: collapse;
}

.table-body tr {
    border-bottom: 1px solid #707070;
}

.table-body td {
    text-align: center;
}

.view-data-container{
    width: 35%;
    border: 1px solid #707070;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 3px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    border-radius: 6px;
}

.view-data-container2{
    width: 100%;
    border: 1px solid #707070;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 3px 0;
    cursor: pointer;
    border-radius: 6px;
}

.operation-disable .view-data-container2{
    border: 1px solid #00000029;
}

.operation-disable i,
.operation-disable span{
    color: #919191;
}

.table-actions-buttons-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2%;
}

.table-actions-buttons-group{
    width: 25%;
}

.hide {
    visibility: hidden;
}

.show-none {
    display: none !important;
}

.success-green{
    color: #358d06;
    font-weight: 600;
}

.unsuccess-red{
    color: #ff0000;
    font-weight: 600;
}

.partial-orange{
    color: #ff9300;
    font-weight: 600;
}

.draft-grey{
    color: #919191;
    font-weight: 600;
}

.void-purple{
    color: #931A57;
    font-weight: 600;
}

.operation-disable{
    pointer-events: none;
}

.pagination{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 12px;
    gap: 6px;
}

.pagination-buttons-group{
    display: flex;
    gap: 6px;
}

.pagination-buttons-group button {
    all: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid #707070;
    background-color: white;
    cursor: pointer;
    border-radius: 6px;
}

.pagination-buttons-group i {
    line-height: 1;
    color: #707070;
}

.details-container {
    background-color: white;
    border: 1px solid #707070;
    border-radius: 6px;
    height: auto;
    padding: 16px;
}

.details-header-text {
    font-size: 24px;
}

.details-header-divider {
    border: 1px solid #707070;
    margin-top: 16px;
    margin-bottom: 16px;
}

.details-submission-button {
    display: flex;
    width: 8%;
    min-width: 90px;
    margin-left: auto;
    padding: 8px;
    background-color: #FFCD38;
    border: 1px solid #FFCD38;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.modal-details-submission-button {
    display: flex;
    width: 12%;
    margin-left: auto;
    padding: 8px;
    background-color: #FFCD38;
    border: 1px solid #FFCD38;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.row {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.modal-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.column {
    display: flex;
    flex-direction: column;
}

.form-input-field {
    outline: none;
    border: 1px solid #707070;
    border-radius: 6px;
    padding: 8px;
}

.form-input-field:disabled {
    outline: none;
    border: 1px solid #707070;
    border-radius: 6px;
    padding: 8px;
    background-color: #E2E2E2;
    color: black;
}

.form-dropdown-field {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' width='16' height='16'><path fill='black' d='M143 352.3L7 216.3C-2.3 207-2.3 192.9 7 183.6s24.1-9.3 33.4 0L160 303.2l119.6-119.6c9.3-9.3 24.5-9.3 33.8 0s9.3 24.5 0 33.8l-136 136c-9.4 9.3-24.6 9.3-34-.1z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    outline: none;
    border: 1px solid #707070;
    border-radius: 6px;
    padding: 8px;
}

label{
    margin-bottom: 5px;
}

.note-box {
    resize: none;
    height: 60px;
    overflow: hidden;
}

.report-filter-container{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #707070;
    background-color: white;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
}

.report-download-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    background-color: #FFCD38;
    border-radius: 6px;
    gap: 10px;
    padding: 0 15px; cursor: pointer;
}

.tabs {
    display: flex;
    gap: 40px;
    font-size: 32px;
    margin-bottom: 20px;
}

.tab {
    color: #9A9A9A;
    margin-bottom: 10px;
    font-size: 20px;
    cursor: pointer;
}

.tab.active {
    color: black;
    padding-bottom: 10px;
    border-bottom: 2px solid #707070;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.order-details-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.order-details-table-header {
    width: calc(100% - 40px);
    padding: 15px;
    border-radius: 6px;
    background-color: #C3C3C34D;
    display: flex;
}

.order-details-table-body {
    width: calc(100% - 40px);
    padding: 15px 15px 0 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-details-table-calculation {
    width: calc(100% - 40px);
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.upload-box {
    width: 150px; 
    height: 150px;
    border: 1px solid #707070;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.upload-label {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.plus-sign {
    font-size: 48px;
    font-weight: 300;
    color: black;
}

.upload-text {
    margin-top: -10px;
    font-size: 14px;
    color: #707070;
}

#productImage,
#uploadedImage {
    display: none;
}

.space-between {
    display: flex;
    justify-content: space-between;
}
.calendar-card {
    width: 100%;
    max-width: 650px;
    border: 1px solid #dcdcdc;
    padding: 20px;
    border-radius: 10px;
    font-family: "Arial", sans-serif;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.calendar-date-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    font-size: 18px;
    font-weight: bold;
}

.nav-btn {
    background: none;
    border: 1px solid #707070;
    color: #707070;
    border-radius: 6px;
    font-size: 22px;
    cursor: pointer;
}

.calendar-legend {
    font-size: 14px;
}

.legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.task-dot { background-color: #7e3fa0; }     /* Purple */
.holiday-dot { background-color: #1ab7b7; }  /* Teal */

.calendar-table {
    width: 100%;
    border-collapse: collapse;
}

.calendar-table th {
    padding: 10px 0;
    font-weight: bold;
    color: #555;
}

.calendar-table td {
    height: 60px;
    text-align: center;
    border: 1px solid #cecece;
    position: relative;
}

.calendar-table td.empty {
    background-color: #fafafa;
    color: #dcdcdc;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.optionAccessLabel {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.row input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 1px solid #707070;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
}

.row input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1000;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal.fade {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.modal.fade.show {
    opacity: 1;
}

.modal-dialog {
    width: 100%;
    max-width: 900px;
    margin: 0 15px;
}

.modal-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    overflow: hidden;
}

.modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-body {
    padding: 20px;
}

.close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.modal-body {
    padding: 15px 0 !important;
}

.modal::before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.modal-dialog {
    display: inline-block;
    vertical-align: middle;
}

.modal-content {
    padding: 15px;
}

.modal-label {
    text-align: left;
    font-weight: 400;
}