:root  {
    /* Light Mode Colors */
    --background-color: #f7f7f7;
    --anti-background-color: #2e2e2e;
    --text-color: #212529;
    --button-background: blueviolet;
    --blueviolet-color: blueviolet;
    --toggle-color: blueviolet;
    --wrapt-color: #f5f5f5;
    --button-text: aliceblue;
    --ico-color: #ffffff;
    --fill-color: #ffffff;
    --header-background: blueviolet;
    --header-text: aliceblue;
    --border-color: #ddd;
    --border-bottom: #f2f2f2;
    --hi-firem: #ffffff1a;
	--box-color: #fff;
	--box-input: #f3f3f3;
	--shadow-col: rgba(0, 0, 0, 0.05);
	
}

[data-theme="dark"] {
    /* Dark Mode Colors */
    --background-color: #2e2e2e;
    --anti-background-color: #f7f7f7;
    --text-color: #f5f5f5;
    --button-background: blueviolet;
    --blueviolet-color: blueviolet;
    --toggle-color: #333333;
    --wrapt-color: #444444;
    --button-text: #f5f5f5;
    --ico-color: #f5f5f5;
    --fill-color: #f5f5f5;
    --header-background: #444444;
    --header-text: #f5f5f5;
    --border-color: #666666;
	--border-bottom: #666666;
    --hi-firem: #2827271a;
	--box-color: #444444;
	--box-input: #727272;
	--shadow-col: rgb(255 255 255 / 0%);

}
[data-theme="dark"] .theme-toggle-label::after {
	 content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 24px; /* Adjust size as needed */
    height: 24px; /* Adjust size as needed */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('./svg/brightness-high.svg'); /* Light mode SVG */
	
}


[data-theme="light"] .theme-toggle-label::after {
	content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 24px; /* Adjust size as needed */
    height: 24px; /* Adjust size as needed */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('./svg/moon-stars.svg'); /* Default dark mode SVG */
	
}
[data-theme="dark"] .screen-check-label::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('./svg/fullscreen-dark.svg'); /* Default fullscreen icon */
}
[data-theme="dark"] .screen-check-label.fullscreen-mode::after {
    background-image: url('./svg/fullscreen-exit-dark.svg'); /* Exit fullscreen icon */
}

[data-theme="dark"] .theme-toggle-label::after {
	 content: '';
    position: absolute;
    left: -2px;
    top: 0px;
    width: 24px; /* Adjust size as needed */
    height: 24px; /* Adjust size as needed */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('./svg/brightness-high.svg'); /* Light mode SVG */
	
}

[data-theme="light"] .screen-check-label::after {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('./svg/fullscreen.svg'); /* Default fullscreen icon */
}
[data-theme="light"] .screen-check-label.fullscreen-mode::after {
    background-image: url('./svg/fullscreen-exit.svg'); /* Exit fullscreen icon */
}

.nameandroleindex {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.backgroundfovA {
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: -3;
    background-color: var( --anti-background-color); /* Background color for expanded */
   animation: rembg 2s ease forwards; /* Animation for expanding the circle */
}

@keyframes rembg {
   0% {
               display: none;
      }
	  100% {
         display: block;
    }
}
.backgroundfovB {
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: -3;
    background-color: #f7f7f7; /* Background color for expanded */
   animation: rembg 2s ease forwards; /* Animation for expanding the circle */
}

@keyframes rembg {
   0% {
               display: none;
      }
	  100% {
         display: block;
    }
}
.expanded {
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-color: #2e2e2e; /* Background color for expanded */
    clip-path: circle(0% at 50% 50%);
    animation: expandCircle 2s ease forwards; /* Animation for expanding the circle */
}

@keyframes expandCircle {
    0% {
        clip-path: circle(0% at 30% 70%); /* Starts with a small circle */
    }
    100% {
        clip-path: circle(150% at 50% 50%); /* Expands to cover the entire background */
    }
}

.expandedw {
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-color: #2e2e2e; /* Background color for reversed animation */
    clip-path: circle(100% at 50% 50%); /* Starts large */
    animation: shrinkCircle 0.7s ease forwards; /* Animation for shrinking the circle */
}

@keyframes shrinkCircle {
    0% {
        clip-path: circle(150% at 50% 50%); /* Starts large */
    }
    100% {
        clip-path: circle(0% at 30% 70%); /* Shrinks to a small circle */
    }
}



.SetAdminco {
    display: grid;
}
#serviceBoxContainer {
    display: grid;
    grid-gap: 20px; /* Adjust the gap between items */
}

.service-box {
    text-align: center; 
	margin: 20px;
}

.modal-content {
    margin: auto;
    padding: 20px;
}


.cancel-button {
    color: #d73939;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
}


.buss {
    display: flex;
    content: '';
    position: relative;
    z-index: 2;
    direction: ltr;
}


        .delete-button {
            
    height: 34px;
    width: 100%;
    border: snow;
    font-family: BUTFLY;
    font-size: 18px;
    background: var(--button-background);
    color: var(--button-text);
    border-radius: 0px 0px 0px 17px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;

        }
        .delete-button:hover {
		     background: red;

        }
		button.button.edit-button {
    height: 34px;
    width: 100%;
    border: snow;
    font-family: BUTFLY;
    font-size: 18px;
    background: var(--button-background);
    color: var(--button-text);
    border-radius: 0px 0px 0px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}
button.button.edit-button:hover {
	background: cornflowerblue;
}
button.button.status-button {
    height: 34px;
    width: 77px;
    border: snow;
    font-family: BUTFLY;
    font-size: 115px;
    background: var(--button-background);
    color: var(--button-text);
    border-radius: 0px 0px 0px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    padding: 0px 0px 34px 0px;
}
        .success, .error {
            padding: 10px;
            margin: 10px 0;
            border-radius: 5px;
        }
        .success {
            background-color: #d4edda;
            color: #155724;
        }
        .error {
            background-color: #f8d7da;
            color: #721c24;
        }
        /* Modal styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 5;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgb(0,0,0);
            background-color: rgba(0,0,0,0.4);
            padding-top: 60px;
        }
.modal-content {
    background-color: #fff;
    border: 1px solid #888;
    border-radius: 20px 20px 20px 20px;
    width: 60%;
    margin: auto;
    position: absolute;
    top: 40vh;
    right: 18%;
}

.modal-content-indexaa {
    background-color: var(--box-color);
    border: 1px solid #888;
    border-radius: 20px 20px 20px 20px;
    width: 40%;
    margin: auto;
    padding: 60px 45px;
    position: relative;
}
.modal-content-indexaa-B {
    margin: auto;
    padding: 60px 45px;
    position: relative;
}
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }
        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }
        .modal-buttons {
            margin-top: 10px;
            text-align: right;
        }
        .modal-buttons button {
            margin-left: 10px;
        }
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden], template {
    display: none;
}

a {
    background-color: transparent;
}

a:active, a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b, strong {
    font-weight: 700;
}

dfn {
    font-style: italic;
}

h1 {
    margin: 0.67em 0;
    font-size: 2em;
}

mark {
    color: #000;
    background: #ff0;
}

small {
    font-size: 80%;
}

sub, sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    height: 0;
    box-sizing: content-box;
}

pre {
    overflow: auto;
}

code, kbd, pre, samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button, input, optgroup, select, textarea {
    margin: 0;
    font: inherit;
    color: inherit;
}

button {
    overflow: visible;
}

button, select {
    text-transform: none;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled], html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
    padding: 0;
    border: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"], input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    box-sizing: content-box;
    -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    padding: 0.35em 0.625em 0.75em;
    margin: 0 2px;
    border: 1px solid silver;
}

legend {
    padding: 0;
    border: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: 700;
}

table {
    display: flex;
    align-items: center;
    justify-content: center;
}

td, th {
    padding: 0;
}

/* Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
    *, :after, :before {
        color: #000 !important;
        text-shadow: none !important;
        background: 0 0 !important;
        box-shadow: none !important;
    }

    a, a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="javascript:"]:after, a[href^="#"]:after {
        content: "";
    }

    blockquote, pre {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    img, tr {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    h2, h3, p {
        orphans: 3;
        widows: 3;
    }

    h2, h3 {
        page-break-after: avoid;
    }

    .navbar {
        display: none;
    }

    .btn>.caret, .dropup>.btn>.caret {
        border-top-color: #000 !important;
    }

    .label {
        border: 1px solid #000;
    }

    .table {
        border-collapse: collapse !important;
    }

    .table td, .table th {
        background-color: #fff !important;
    }

    .table-bordered td, .table-bordered th {
        border: 1px solid #ddd !important;
    }
}

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('../fonts/glyphicons-halflings-regular.eot');
    src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'),
         url('../fonts/glyphicons-halflings-regular.woff') format('woff'),
         url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),
         url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* by Jamal Hassouni*/
@import url('https://fonts.googleapis.com/css?family=Roboto:300');

section{
  width: 100%;
  height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
          padding: 140px 0;
}
.row {
   display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}
.card{
  position: relative;
      width: 250px;
    height: 270px;
  max-width: 300px;
  border-radius: 15px 15px 0px 0px;
  margin: 0 auto;
  padding: 40px 20px;
  -webkit-box-shadow: 0 10px 15px rgba(0,0,0,.1) ;
          box-shadow: 0 10px 15px rgba(0,0,0,.1) ;
-webkit-transition: .5s;
transition: .5s;
}
.card1 {
    background: linear-gradient(-45deg,#f403d1,#64b5f6);
}

.card2 {
    background: linear-gradient(-45deg,#ffec61,#f321d7);
}

.card3 {
    background: linear-gradient(-45deg,#24ff72,#9a4eff);
}

/* Add additional styles for cards 4 through 9 */
.card4 {
    background: linear-gradient(-45deg, #f4a261, #2a9d8f);
}

.card5 {
    background: linear-gradient(-45deg, #e76f51, #f1faee);
}

.card6 {
    background: linear-gradient(-45deg, #2a9d8f, #264653);
}

.card7 {
    background: linear-gradient(-45deg, #e9c46a, #f1faee);
}

.card8 {
    background: linear-gradient(-45deg, #8d99ae, #d8e2dc);
}

.card9 {
    background: linear-gradient(-45deg, #d62839, #f77f00);
}

.card10 {
    background: linear-gradient(-45deg, #fe0847, #feae3f);
}

.card11 {
    background: linear-gradient(-45deg, #4a90e2, #50e3c2);
}

.card12 {
    background: linear-gradient(-45deg, #e94e77, #fd6d7b);
}
/* .card:hover{ */
  /* -webkit-transform: scale(1.1); */
          /* transform: scale(1.1); */
/* } */

/* .col-sm-4:nth-child(1) .card , */
/* .col-sm-4:nth-child(1) .card .title .fa{ */
  /* background: linear-gradient(-45deg,#f403d1,#64b5f6); */
/* } */
/* .col-sm-4:nth-child(2) .card, */
/* .col-sm-4:nth-child(2) .card .title .fa{ */
  /* background: linear-gradient(-45deg,#ffec61,#f321d7); */
/* } */
/* .col-sm-4:nth-child(3) .card, */
/* .col-sm-4:nth-child(3) .card .title .fa{ */
  /* background: linear-gradient(-45deg,#24ff72,#9a4eff); */
/* } */
.card::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--hi-firem);
z-index: 1;
-webkit-transform: skewY(-5deg) scale(1.5);
        transform: skewY(-5deg) scale(1.5);
}

        
        
      
.service-box.selected .price h4,
.service-box.selected .option li {
    color: red;
}
.IMG {
   width: 70px;
    height: 350px;
    display: flex;
    position: absolute;
    top: -22px;
    z-index: 2;
    color: var(--text-color);
    /* margin-right: 175px; */
}
.title {
    margin: 55%;
}
.title .fa{
  color:#fff;
  font-size: 60px;
  width: 100px;
  height: 100px;
  border-radius:  50%;
  text-align: center;
  line-height: 100px;
  -webkit-box-shadow: 0 10px 10px rgba(0,0,0,.1) ;
          box-shadow: 0 10px 10px rgba(0,0,0,.1) ;

}
.title h2 {
  position: relative;
  margin: 20px  0 0;
  padding: 0;
  color: #fff;
  font-size: 28px;
 z-index: 2;
}
.price,.option{
  position: relative;
  z-index: 2;
}
.price h4 {
margin: 0;
padding: 20px 0 ;
color: #fff;
font-size: 60px;
}
.option ul {
  margin: 0;
  padding: 0;

}
.option ul li {
margin: 0 0 10px;
padding: 0;
list-style: none;
color: #fff;
font-size: 30px;
}
.card a {
  position: relative;
  z-index: 2;
  background: #fff;
  color : black;
  width: 150px;
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
  display: block;
  text-align: center;
  margin: 20px auto 0 ;
  font-size: 16px;
  cursor: pointer;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, .1);

}
.card a:hover{
    text-decoration: none;
}
a {
    font-family: BUTFLY;
    font-size: 20px;
    color: #ffffff;
    display: contents;
}
    .col {
    float: left;
    margin: 80px 40px;
}

/* Hide default checkbox */
.theme-toggle-checkbox {
    display: none;

}

/* Slider styles */
.theme-toggle-label {
    position: relative;
    top: 6px;
    margin: 0 76%;
}


.theme-toggle-checkbox:checked + .theme-toggle-label .theme-toggle-slider {
    transform: translateX(30px);
    background-color: var(--toggle-color);
}


.Headofservice {
    direction: rtl;
    padding: 45px 65px 0px 0px;
}
	@font-face {
  font-family: 'BUTFLY';
  src: url('./fonts/butfly.woff2') format('woff2'),
       url('./fonts/butfly.woff') format('woff');
  /* You can add more font formats if necessary */
}


input#serviceName, input#servicePrice {
    color: var(--text-color);
    font-size: 20px;
    font-family: BUTFLY;
    height: 4%;
    padding: 9px;
    border: 0;
    outline: none;
    background: #97979717;
    border-radius: 8px;
    margin: 1% 0 4% 0;
}
body {
    font-family: BUTFLY;
    font-size: 20px;
    background-color: var(--background-color);
    color: var(--text-color);
}
.Setforservice {
    display: flex;
    direction: ltr;
}

.SetAforservice {
    height: 30rem;
    border-radius: 24px;
    padding: 48px 24px;
    background: var(--box-color);
    box-shadow: 0px 0px 20px 10px var(--shadow-col);
    direction: rtl;
    display: flex;
    justify-content: flex-start;
}
select.dokhs {
    height: 8%;
    font-size: 1.4rem;
    width: 75%;
    margin: 1% 0 4% 0;
    border-radius: 8px;
}
form#serviceForm {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
	width: 100%;
}

.SetBforservice {
    width: 70%;
    height: 30rem;
    direction: rtl;
    margin-left: 24px;
}
.SetfileInfo {

}
.Set {

}
.SetA {

}
.SetB {

}
a.button {
    height: 26px;
    width: 107px;
    border: 2px solid blueviolet;
    font-family: BUTFLY;
    font-size: 1.3rem;
    color: red;
    display: contents;
}
input.J1 {
    height: 100%;
    width: 100px;
    border: snow;
    font-family: BUTFLY;
    font-size: 1.3rem;
    background: var(--button-background);
    color: var(--button-text);
    box-shadow: 0px 0px 20px 10px var(--shadow-col);
    margin-left: 9px;
    border-radius: 24px;
}
input#start_date, input#end_date {
    background: var(--box-color);
    font-size: 1.4rem;
    font-family: BUTFLY;
    border: none;
    height: 100%;
    width: 70%;
    padding: 9px;
    border-radius: 24px 0 0 24px;
    display: flex;
    justify-content: center;
}

		
	svg.bi.bi-check2-all {
    color: var(--ico-color);
}
		
select#service_name {
    background-color: var(--header-background);
    color: var(--header-text);
    border: none;
    height: 33px;
    width: 105px;
    font-family: 'BUTFLY';
    font-size: 19px;
}
	.limiter {
    width: 100%;
    margin: 0 auto;
}


.buttonS {
    height: 10%;
    border: snow;
    font-family: BUTFLY;
    font-size: 18px;
    background: var(--button-background);
    color: var(--button-text);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 5%;
}
select#itemsPerRow {
    background: var(--background-color);
    color: var(--text-color);
    border: 2px solid blueviolet;
    height: 34px;
    width: 75px;
    font-family: 'BUTFLY';
    font-size: 19px;
    direction: ltr;
	display: none;
}
div#customServiceSection {
    margin: 14px;
}
button#addCustomService {
    color: #fff;
}
input#customServiceName, input#customServicePrice {
    height: 2rem;
    border: 0;
    outline: none;
    background: #ffffff3d;
    border-radius: 8px;
}
label.custom-file-upload {
    border: 1px solid #97979754;
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 12px;
}


.custom-file-upload i {
    margin-right: 8px;
    color: #333;
}

.custom-file-upload:hover {
    background-color: var(--button-background);
    color: #fff;
}

.done-button {
    border: 2px solid #28a745;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    cursor: pointer;
    background-color: #28a745;
    color: #fff;
    font-size: 16px;
    transition: background-color 0.3s, border-color 0.3s;
    outline: none;
    border: none;
}

.done-button svg {
    margin-right: 8px;
    fill: #fff; /* Icon color */
}

.done-button:hover {
    background-color: #218838;
    border-color: #1e7e34;
}
.onandoff {
    display: flex;
    width: 300px;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1000;
    color: var(--text-color);
    padding: 20px;
}
button#turnAllOff {
    height: 34px;
    width: 220px;
    border: snow;
    font-family: BUTFLY;
    font-size: 18px;
    background: var(--button-background);
    color: var(--button-text);
    margin-left: 14px;
    border-radius: 16px 0px 0px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}
button#turnAllOff {
    height: 34px;
    width: 220px;
    border: snow;
    font-family: BUTFLY;
    font-size: 18px;
    background: var(--button-background);
    color: var(--button-text);
    margin-left: 14px;
    border-radius: 0px 0px 0px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}
button#turnAllOn {
    border: 2px solid blueviolet;
    height: 34px;
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: var(--background-color);
    font-size: 1.3rem;
}
button#turnAllOn:hover {
    background-color: var(--button-background);
	color: var(--button-text);
}


.container-table1001 {
    width: 100%;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    box-sizing: border-box;
}
.container-table100 {
    direction: rtl;
	width: 100%;
}
.pagination {
    display: flex;
    justify-content: space-around;
	direction: ltr;
}

div#fileInfo {
    direction: rtl;
}
span.highlight-text {
    color: blueviolet;
}
.wrap-table100 {
	background-color: var(--wrapt-color);
    border-radius: 10px;
    overflow: hidden;
	margin-top: 20px;
	
}

.table {
    width: 100%;
    display: table;
    margin: 0
}
	
.ticket-container {
    display: table-cell;
    font-size: 20px;
    color: var(--text-color);
    line-height: 1.2;
    font-weight: unset !important;
	flex: 1;
    padding: 1px;
}




  .ticket-container {
    max-height: 400px; /* Adjust as needed */
    overflow-y: auto;
    border-radius: 5px;
    padding: 10px;
  }

  
.ticket-header {
    display: flex;
    font-weight: bold;
    background-color: blueviolet;
    padding: 15px;
    color: aliceblue;
    border-radius: 24px;
    }


.ticket-item-header {
    display: table-cell;
    font-size: 20px;
    line-height: 1.2;
    font-weight: unset !important;
    padding: 1px;
}
/* For specific flex items, adjust their flex value */
.ticket-item-header-index.item-1 {
    flex: 2; /* This item will take twice as much space as others */
}

  .ticket-row {
    display: flex;
    padding: 5px;
  }


