* {
    font-family: 'SF Pro Display', sans-serif !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;


}

body {
    background: #F3F3F4;

}

.name {
    font-weight: 600;
    font-size: 25px;
}

.date {
    font: weight 400px;
    font-size: 18px;
    color: #7A777D;

}

.main-container {
    display: flex;
    flex-direction: column;
    /* border: 1px solid black; */
    margin: 0 90px;
    background: #F3F3F4;



}

header {
    display: flex;
    justify-content: space-between;
    min-height: 65px;
    align-items: center;
    box-shadow: 0px 4px 4px 0px hsla(0, 0%, 0%, 0.02);
    background-color: white;
}

.tabs {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 10px 20px;
    margin-right: 218px;
    background: white;
}

/* Individual tab */
.tab {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #858585;
    /* Gray color for inactive tabs */
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    background: white;
}

.tab:hover {
    color: #4f46e5;
    /* Purple on hover */
}

/* Active tab */
.tab.active {
    color: #000000;
    /* Black for active tab */
    font-weight: 700;
    /* Bold text for active tab */
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4f46e5;
    /* Purple underline for active tab */
}

/* Tab icons */
.tab img {
    height: 20px;
    width: 20px;
    object-fit: contain;
    background: white;
}

.menu-buttons {
    display: flex;
}

.menu-button {
    display: flex;
}

.new-ticket {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 55px;
    background: white;
}

.new-ticket-icon {
    background: #351BAA;

}

.new-ticket img {
    width: 30px;
    height: 30px;
}


.maruti-logo {
    height: 40px;
    margin-left: 55px
}

.maruti-logo img {
    height: 40px;
}

.new-ticket-button {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #351BAA;
    color: white;
    /* White text */
    font-size: 18px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 10px;
    /* Rounded corners */
    border: 2px solid #1e40af;
    /* Blue border */
    cursor: pointer;
    transition: all 0.3s ease;
    /* Smooth hover effect */
    text-align: center;
    gap: 10px;
    /* Space between icon and text */
}

/* Hover effect */
.new-ticket-button:hover {
    background-color: #4338ca;
    /* Darker purple on hover */
    transform: scale(1.05);
    /* Slight zoom effect */
}

/* Icon styling */
.new-ticket-icon {
    font-size: 20px;
    /* Size for the "+" icon */
}

.subcontainer-head {
    display: flex;
    justify-content: space-between;
    /* border: 1px solid black; */
    align-items: center;
    margin: 10px 0
}

.subcontainer-head-names {
    margin: 10px 0
}

.task-buttons {
    display: flex;
    gap: 10px;
    width: 300px;
    background: #f3f4f6;
    padding: 5px;
    border-radius: 10px;


    /* display: flex;
    background: #E2E2E9;
    height: 40px;
    width: 200px;
    margin-top: 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden; */
}

/* Base button styles */
.task-button {
    flex: 1;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: #6b7280;
    /* Gray text */
    background: transparent;
    transition: all 0.3s ease, transform 0.2s ease;
    /* For smooth color and size animation */
}

/* Highlighted button */
.task-button.active {
    background: #1d4ed8;
    /* Blue background */
    color: white;
    /* White text */
    transform: scale(1.1);
    /* Slight zoom effect */
}

/* Hover effect */
.task-button:hover {
    background: #d1d5db;
    /* Light hover background for inactive buttons */
}

/* Click effect (animation) */
.task-button:active {
    transform: scale(0.95);
    /* Slight press effect */
}

.subcontainer-stats {
    display: grid;
    /* grid-template-columns: 1fr 1fr 1fr; */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Responsive grid */

    gap: 8%
}

.today-ticket-container,
.day-wise-container {
    border-radius: 15px;
    background: linear-gradient(180deg, #9BDCF4 7.5%, #FFFFFF 100%);

    height: 250px;
    /* min-width: 35; */
    /* border: 1px solid black; */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    gap: 10px;
}

.day-wise-container {
    background: linear-gradient(180deg, #A1DADC 7.5%, #FFFFFF 100%) !important;

}

.today-ticket-heading-container {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.today-ticket-stats-container {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 25px
}

.today-ticket-heading {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat {
    background-color: white;
    padding: 15px;
    border: 1px solid #E8E8E8;
    background: #FFFFFF;
    border-radius: 10px;
    text-align: center;

}

.ticket-text {
    font-weight: 600;
    font-size: 18px;
    padding: 20px;
}

.today-ticket-number {
    font-weight: 700;
    font-size: 27px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px
}

.ticket-image {
    object-fit: contain;
    background: rgba(255, 255, 255, 0.4);
    padding: 10px;
    border-radius: 10px;

}


.pending-ticket-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    /* min-width: 400px; */

    /* background: linear-gradient(180deg, #7481BF 0%, #FFFFFF 100%),
linear-gradient(0deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)); */
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    background: linear-gradient(180deg, #7481BF 0%, #FFFFFF 100%), linear-gradient(0deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6));

    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);

    /* border:1px solid red; */
    border-radius: 15px;

}

.pending-ticket-heading-container {
    width: 90%;
    display: flex;
    align-items: center;

}

.pending-ticket-stats-container {
    width: 80%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px
}

.pending-ticket-image,
.day-wise-logo {
    object-fit: contain;
    background: white;
    padding: 10px;
    border-radius: 10px;

}

.pending-ticket-text,
.day-wise-text {
    font-weight: 600;
    font-size: 18px;
    padding: 20px
}

.doughnut-chart {
    position: relative;
    height: 148px;
    width: 148px;
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.legend-item {

    display: flex;
    align-items: center;
    gap: 20px
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.doughnut-legend {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px
}

.day-wise-heading-container {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day-wise-stats-container {
    display: flex;

}

.filter-dropdown {
    border-radius: 35px;
    height: 30px;
    width: 118px;
    border: none;
    background: #FFFFFF66;

    font-weight: 400;
    font-size: 17px;
    text-align: center;
}

.day-wise-logo {
    background: #FFFFFF99;

}

.left-side {
    display: flex;
    align-items: center;
}

.day-wise-chart {
    width: 100% !important;
    margin-bottom: 40px;
    margin-left: 10px;
    margin-right: 10px
}

header {
    display: flex;
    justify-content: space-between;
    min-height: 65px;
}

.menu-buttons {
    display: flex;
}

.menu-button {
    display: flex;
}

.new-ticket {
    display: flex;
}

.submenu-buttons {
    display: flex;
    background: #E2E2E9;
    height: 40px;
    width: 200px;
    margin-top: 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.submenu-buttons button {
    background: transparent;
    font-weight: 600;
    font-size: 16px;
    height: 100%;
    border: none;
    color: #858585;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.chart-button {
    width: 90px;
}

.calendar-button {
    width: 110px;
}

.active-indicator {
    position: absolute;
    height: 100%;
    width: 90px;
    /* Matches chart-button width */
    background: #007bff;
    border-radius: 10px;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.submenu-buttons button.active {
    color: #fff;
}

.submenu-buttons button.inactive {
    color: #858585;
    transform: translateX(10px);
    /* Slight shift for inactive text */
    opacity: 0.8;
}

.calendar-container {
    position: relative;
    max-width: 100%;
    /* margin: 0 auto; */
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 4px 11px 0px #0000001A;
    margin-top: 20px;

}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.nav-buttons {
    display: flex;
    gap: 8px;
}

.nav-button {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
}

.calendar-grid {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.calendar-grid th {
    padding: 10px;
    text-align: left;
    background-color: #f0f0f0;
    border: none;
    padding-left: 20px;
    background: hsla(0, 0%, 98%, 1);
    border: 1px solid hsla(235, 48%, 95%, 1)
}

.calendar-grid th:first-child {
    border-radius: 8px 0 0 8px
}

.calendar-grid th:last-child {
    border-radius: 0 8px 8px 0
}

.calendar-grid td {
    padding: 10px;
    vertical-align: top;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    border-left: 1px solid #f0f0f0;
    ;
    padding-left: 20px
}

.calendar-grid td:first-child {
    border-left: none;
}

.calendar-grid td:last-child {
    border-right: none;
}

.today-date {
    font-size: 17px;
    font-weight: 400;
    color: #7A777D;

}

.ticket {
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 14px;
    color: white;
    margin-bottom: 4px;
    display: inline-block;
    width: 95%;
    text-align: center;
    font-weight: 600
}

.ticket-1-green {
    /* background-color: #7bc043; */
    background: hsla(107, 40%, 60%, 1);

}

.ticket-10-red {
    /* background-color: #e77d7d; */
    background: hsla(9, 60%, 58%, 1);

}

.selected-day {
    background-color: #e8f4ff;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.month-year {
    flex-grow: 1;
}

.date-cell {
    border: 1px solid #f0f0f0;
    color: hsla(270, 2%, 48%, 1);
    font-weight: 600
}

.ticket-box {
    border: 1px solid #f0f0f0;
    height: 130px
}

.last-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.month {
    font-weight: 600;
    font-size: 17px;
}

.week {
    font-weight: 600;
    font-size: 17px;
    color: hsla(270, 2%, 48%, 1);
    vertical-align: center !important;

}

.weeknumber {
    text-align: center;
    padding-right: 11px;
    font-size: 25px;
    font-weight: 600;
    margin-top: 5px;
    color: black
}

.charts-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 20px;
    margin-bottom: 30px
}

.chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 4px 11px 0px #0000001A;
    padding: 20px 0;
}

.model-wise-summary-container,
.team-wise-summary-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    /* Prevent wrapping for scrollable containers */
    gap: 20px;
    width: 100%;
    overflow-x: auto;
    /* Enable horizontal scrolling */
    padding: 10px;
}



.bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 80px;
    opacity: 0;
    /* Initially hidden */
    transform: translateY(20px);
    /* Positioned slightly below */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.bar-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 150px;
    width: 50px;
    background: hsla(228, 92%, 95%, 1);
    border-radius: 11px;
}

.charts {
    background: hsla(231, 37%, 63%, 1);
    width: 100%;
    border-radius: 7px;
    height: 0;
    /* Initial height */
    transition: height 1s ease;
    /* Smooth height transition */
}

.chart-value {
    font-size: 14px;
    font-weight: bold;
}

.chart-label {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.bar-container.visible {
    opacity: 1;
    /* Fully visible */
    transform: translateY(0);
    /* Move to original position */
}

.chart-container-heading {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    background: #FAFAFA;
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    width: 96%;
    gap: 10px;
    border: 1px solid #EEEFF9
}

.model-wise-summary-container .charts {
    background: #DA9C9C;


}

.model-wise-summary-container .bar-chart {
    background: #FEE5E5;

}



.ticket-summary-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px
}

.ticket-summary-heading {
    font-weight: 600;
    font-size: 20px;

}

.menu-buttons {
    display: flex;
    justify-content: space-between;
}

.menu-buttons button {
    border: 1px solid #7ABCFF;
    background: white;
    font-weight: 500;
    color: #0071E3;
    height: 42px;
    width: 151px;
    border-radius: 44px;
    font-size: 17px;
    border: 1px solid #7ABCFF;
    background-color: #F3F3F4;

}

.table-container-ticket {
    width: 100%;
    margin: 0 auto;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    padding: 15px;
}

.ticket-table {
    width: 100%;
    border-collapse: collapse;
}

/* thead {
    background: #E8EAEE;
} */


.ticket-table-heading {
    background: #E8EAEE;
}

.ticket-table-heading th {
    padding: 10px;
    text-align: left;
    font-weight: bold;
    font-size: 14px;
    border-bottom: 1px solid #e5e5e5;
}

.ticket-table-body tr {
    border-bottom: 1px solid #e5e5e5;
}

.ticket-table-body tr:last-child {
    border-bottom: none;
}

.ticket-table-body td {
    padding: 24px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    color: #524C4C;

}

.priority {
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
}

.priority.critical {
    background-color: #ffd6d6;
    color: #d9534f;
}

.priority.delay {
    background-color: #fbd3d3;
    color: #d9534f;
}

.priority.normal {
    background-color: #d4edda;
    color: #5cb85c;
}

.table-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px
}

.table-heading div {
    font-weight: 600;
    font-size: 17px;
}

.table-heading input {
    width: 100%;
    border: none;
    border-radius: 10px;
    height: 28px;
    text-align: center;
}

/* .xaxis{
    height: 1px;
    width: 90%;
    border: 1px solid #7ABCFF
} */

/* select {
    word-wrap: normal;
    text-align: center;
} */

.new-ticket-container {
    margin: auto;
    background: white;
    position: relative;
    height: 800px;
    width: 1170px;
    border-radius: 15px;
    box-shadow: 0px 4px 11px 0px hsla(0, 0%, 0%, 0.1);
    /* transform: translateY(100%); 
    animation: slide-up 0.5s forwards; */
}

.new-ticket-container::after,
.new-ticket-container::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #444;
    border-radius: 50%;
}

.new-ticket-container::before {
    top: 91%;
    left: -10px;
    transform: translateY(-50%);
}

.new-ticket-container::after {
    top: 91%;
    right: -10px;
    transform: translateY(-50%);
}


.new-ticket-heading-container {
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: hsla(233, 20%, 92%, 1);
    border-radius: 15px 15px 0 0;
}

.new-ticket-heading-container img {
    margin-right: 24px
}

.create-ticket-heading {
    font-weight: 600;
    font-size: 18px;
    margin-left: 20px;
}

.ticket-sub-container {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
}

.ticket-left-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* justify-content: center; */
    /* border: 1px solid red; */
    padding: 20px;
}



.input-box {
    display: grid;
    grid-template-columns: 1fr 4.5fr;
    gap: 20px;
}

label {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
}

input {
    height: 30px;
    border: 1px solid hsla(209, 9%, 90%, 1);
    border-radius: 6px;
}

#editor-container {
    height: 286px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#ticket-number,
#ticket-type,
#reference-ticket,
#reference-ticket-search,
#model,
#deadline {
    width: 236px;
    height: 30px;
    border: 1px solid hsla(209, 9%, 90%, 1);
    border-radius: 6px;

}

#reference-ticket-dropdown {
    width: 236px;
}

#subject {
    height: 30px;
    border: 1px solid hsla(209, 9%, 90%, 1);
    border-radius: 6px;

}

.body-description {
    display: block;
    padding-top: 12px
}

.ticket-right-container {
    /* border: 1px solid green; */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    padding: 20px;

}

.right-input-box {
    width: 77.9% !important;
    display: flex;
    justify-content: space-between !important;
    gap: 20px
}

.right-input-box input {
    width: 155px;
}

.upload-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    max-width: 400px;
}

.upload-containers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.attachment-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.attachment-main-container {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.attachment-label {
    display: block;
    padding-top: 8px
}

.empty-line {
    width: 320px;
    height: 1px;
    border: 1px solid #E3E5E8;
    margin-top: 2px
}

.upload-btn,
.add-btn {
    width: 91px;
    height: 31px;
    background: #95A3B0;
    color: white;
    border-radius: 980px;
    border: none;
}

.first-empty {
    width: 262px;
}

.buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px
}

.bottom-buttons {
    height: 40px;
    width: 120px;
    border-radius: 20px;
    background: #0071E3;
    color: white;
    border: none;

}

.dotted-line {
    height: 1px;
    border: 1px dashed #A4A4A4;
    margin-bottom: 15px;
    margin-top: 15px
}

.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Black background with opacity */
    display: none;
    /* Hide the popup by default */
    justify-content: center;
    align-items: flex-end;
    /* Start the popup from the bottom */
    z-index: 9999;
    /* Ensure the popup is on top */
}

@keyframes slide-up {
    0% {
        transform: translateY(100%);
        /* Popup starts below the screen */
    }

    100% {
        transform: translateY(0);
        /* Popup comes to its normal position */
    }
}


/* Animation on the containers */

.subcontainer-stats .today-ticket-container,
.pending-ticket-container,
.day-wise-container {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Smooth transition */
}

.subcontainer-stats .today-ticket-container:hover,
.pending-ticket-container:hover,
.day-wise-container:hover {
    transform: scale(1.05);
    /* Slight zoom */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* Optional shadow effect */
}



/* Aniamtion on charts */

.bar-chart {
    transition: transform 0.3s ease-in-out;
    /* Smooth zoom transition */
}

.bar-chart:hover {
    transform: scale(1.1);
    /* Slight zoom when hovering over the bar */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Optional shadow effect */
}


#myChartContainer {
    max-width: 500px;
    /* You can adjust this value */
    /* padding: 20px; */
    /* width: 30%;
    height: 30%; */
    position: relative;
}

#myChart {
    position: relative;
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    transition: all 0.5s ease;
    /* Smooth transition for value change */
}

.status-text {
    font-weight: 600;
    font-size: 8px;
    color: #91979E;

}

.center-text {
    font-weight: 600;
    font-size: 18px;
    color: #02050A;


}


.legend-color {
    transition: opacity 0.5s ease;
    /* Smooth transition */
}

.legend-color.dimmed {
    opacity: 0.3;
    /* Dimmed opacity */
}

.another-container {
    max-width: 100%;
    position: relative;
    display: flex;

    flex-direction: column;
    transition: max-width 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.5s ease-in-out;

}

.another-container.shrunk {
    max-width: 75%;
    /* Adjust this value for shrinking */
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-grid {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

/* New Side Box Styles */
.side-box {
    position: absolute;
    overflow: hidden;
    /* Ensures content is clipped when the width is 0 */

    top: 0;
    right: 0;
    /* Hidden by default */
    height: 100%;
    width: 0;
    background: #ffffff;
    border-left: 1px solid #e0e0e0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: width 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.5s ease-in-out;
}

.side-box.open {
    right: 0;
    width: 25% !important;
}

.side-box h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.close-btn {
    background: #e0e0e0;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
}



.workflow-container {
    margin: auto;
    position: relative;
    height: 800px;
    width: 1170px;
    border-radius: 15px;
    box-shadow: 0px 4px 11px 0px hsla(0, 0%, 0%, 0.1);
    background-color: white;
}

.workflow-container::after,
.workflow-container::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #444;
    border-radius: 50%;
}

.workflow-container::before {
    top: 91%;
    left: -10px;
    transform: translateY(-50%);
}

.workflow-container::after {
    top: 91%;
    right: -10px;
    transform: translateY(-50%);
}

.workflow-heading-container {
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: hsla(233, 20%, 92%, 1);
    border-radius: 15px 15px 0 0;
}

.workflow-heading {
    font-weight: 600;
    font-size: 18px;
    margin-left: 20px;
}

.ticket-sub-container {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
}

.empty-line {
    width: 320px;
    height: 1px;
    border: 1px solid #E3E5E8;
    margin-top: 2px;
}

.upload-btn,
.add-btn {
    width: 91px;
    height: 31px;
    background: #95A3B0;
    color: white;
    border-radius: 980px;
    border: none;
}

.first-empty {
    width: 262px;
}

.buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.bottom-buttons {
    height: 40px;
    width: 120px;
    border-radius: 20px;
    background: #0071E3;
    color: white;
    border: none;
}

.dotted-line {
    height: 1px;
    border: 1px dashed #A4A4A4;
    margin-bottom: 15px;
    margin-top: 44px;
}

.workflow-container .table-container {
    margin: 10px;
}

.workflow-container .workflow-table {
    width: 100%;
    border-collapse: collapse;
    height: 628px;
}

.workflow-container .workflow-table th,
.workflow-container .workflow-table td {
    padding: 8px 12px;
    text-align: left;
}

.workflow-container .workflow-table th {
    background-color: #f4f4f4;
    height: 43px;
}

.workflow-container .workflow-table th:first-child {
    border-radius: 8px 0 0 8px;
}

.workflow-container .workflow-table th:last-child {
    border-radius: 0 8px 8px 0;
}

.workflow-container .workflow-table td {
    border-bottom: 1px solid #ccc;
}

.workflow-container .workflow-body tr {
    height: 60px;
    font-weight: 500;
    font-size: 17px;
}

.workflow-container .workflow-table select {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    padding-right: 30px;
    /* Add padding for chevron */
}

.workflow-container .workflow-table input[type="checkbox"] {
    min-width: 20px;
    height: 20px;
    width: 20px
}

.workflow-container .workflow-table input {
    height: 39px;
    border: 1px solid #ccc;
    width: 100%;
}

/* Custom chevron for select */
.workflow-container .workflow-table select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.workflow-container .workflow-table select::-ms-expand {
    display: none;
}

/* Custom chevron icon */
.workflow-container .workflow-table select {
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zY3JlZW5zYXBjdCINCDzp75ep4fbBwdQvGz1QFOnKn6zZwfdAF0t5yssgqdy1cC6tZu2qfyaX-3VY0S2g2AW1esADtzqZrr-dYwb7-MYhqa17vw0g==') no-repeat right 10px center;
    background-size: 12px 8px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    max-height: 200px;
    overflow-y: auto;
    pointer-events: none;
    opacity: 0.5;
}

.dropdown .dropbtn:not([disabled])+.dropdown-content {
    pointer-events: auto;
    opacity: 1;
}

.dropdown-content input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    margin: 5px 0;
    font-size: 16px;
    border: 1px solid #ddd;
}

.dropdown-content label {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
}

.dropdown-content label:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.show {
    display: block;
}

input.multivalue,
input.selectAll {
    margin-right: 4px;
    margin-top: 0px;
}

/* d */

.dropdown-container {
    position: relative;
    width: 100%;
}

.dropdown-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-top: none;
    background-color: white;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 8px;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
}

.dropdown-item:active {
    background-color: #e0e0e0;
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 20000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Popup container */
.popup {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s;
}

.popup-overlay.active .popup {
    transform: scale(1);
}

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 5px solid rgba(79, 70, 229, 0.2);
    border-radius: 50%;
    border-top-color: #4f46e5;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Success icon */
.success-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #4ade80;
    border-radius: 50%;
    margin-bottom: 15px;
}

.success-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

/* Popup content */
.popup-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

.popup-message {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

/* Button */
.popup-button {
    background-color: #4f46e5;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.popup-button:hover {
    background-color: #4338ca;
}

.error-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #f87171;
    border-radius: 50%;
    margin-bottom: 15px;
}

.error-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

#fileContainer {
    height: 140px;
    overflow-y: auto;
    width: -webkit-fill-available;
}

.upload-containers {
    height: 140px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.ticket-sub-container {
    height: 668px;
}

.table-container {
    height: 628px;
    overflow-y: auto;
}

.workflow-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.workflow-table thead {
    position: sticky;
    top: 0;
    background-color: #f9fafb;
    z-index: 1;
}

.workflow-table td {
    height: 100px;
    overflow-wrap: break-word;
}

.workflow-container .workflow-table {
    width: 100%;
    border-collapse: collapse;
    height: 0px;
}

.ql-editor p {
    font-size: 14px;
}

input::placeholder {
    color: lightgrey !important;
    opacity: 1;
}

.folder-link-input::placeholder {
    color: lightgrey !important;
    opacity: 1 !important;
}

.ql-editor {
    width: 536px;
}

.mandatory {
    color: red;
    font-weight: bold;
    margin-left: 2px;
}

.question-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: #3498db;
}

.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.secondary-button {
    background-color: #f1f1f1;
    color: #333;
}

.secondary-button:hover {
    background-color: #e1e1e1;
}

.workflow-body1 tr:hover {
    background-color: #f5f5f5;
    cursor: pointer;
}

input,
select {
    padding-left: 10px;
}

.bottom-buttons {
    background: #007bff !important;
}

.tcolmcheck {
    text-align: center !important;
}

input:not([type="button"]):not([type="submit"]):not([type="reset"]),
select,
textarea,
p,
.dropdown-content label {
    color: #545454 !important;
}

input::placeholder,
textarea::placeholder {
    color: #aaa !important;
}

select option[disabled] {
    color: #aaa;
}

/* Style checkbox label text */
input[type="checkbox"]+label,
label[for] {
    color: #524C4C !important;
}

.ql-editor.ql-blank::before {
    content: attr(data-placeholder);
    color: #aaa;
}

#weekDropdown {
    text-align: left;
    font-size: 16px;
}

.light-theme {
    background-color: #f1f1f1 !important;
    color: #333 !important;
}

.workflow-container .workflow-table td {
    color: #524C4C !important;
}

.comment-section {
    margin: 15px 0;
    width: 100%;
}

.comment-section label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
}

.comment-box {
    width: 100%;
    min-height: 80px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
}

.comment-box:focus {
    border-color: #0066cc;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

/* Make sure the popup is wide enough to accommodate the comment box */
.popup {
    min-width: 320px;
    max-width: 450px;
}

.folder-link-input {
    width: 130px !important;
}