@charset "utf-8";
/* CSS Document */
/********Home Page********/
body {
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
}

body, input {
    font-family: 'Arial', 'Helvetica', 'sans-serif';
}

p {
    font-family: 'Times New Roman', 'Times', 'serif';
}

* {
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}
a {
    text-decoration: none;
    color: #000;
}
#main-content-area, .cf-dashboard-content-area {
    width: 100%;
/*
    background-image: url("img/4233.webp");
    background-size: cover;
    background-repeat: no-repeat;
*/
    display: flex;
    flex-direction: column;
    align-items: center;
    
    padding-bottom: 5px;
}
#cf-index-content-area {
/*    min-height: 100vh;*/
}
/************* header ***************/
#header {
    padding-top: 20px;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
}
#header > #inner-cont {
    width: 1200px;
    display: flex;
    justify-content: space-between;
}
#logo-cont > a > img {
    background-size: cover;
    width: 80px;
}
#navigation-cont > nav > ul > li {
    float: left;
    margin-left: 15px;
    list-style: none;
    color: #fff;
}
#header #navigation-cont > nav > ul > li > a {
    color: #fff;
}
/*header 1 style end*/
/*header 2 style start*/
#header-2 {
    width: 100%;
    border-bottom: 1px solid #ccc;
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
#header-2 #navigation-cont > nav > ul > li {
    float: left;
    margin-left: 15px;
    list-style: none;
    line-height: 40px;
    padding: 0px 10px;
    border-radius: 4px;
}
#header-2 #navigation-cont > nav > ul > li:hover {
    background-color: rgba(233,233,252,1.00);
    
    
}
#navigation-cont li:hover a {
    color: rgba(40,112,239,1.00);
}

#navigation-cont li:hover li a {
    color: #000;
}
#header-2 #navigation-cont nav {
    display: flex;
    justify-content: center;
    align-content: center;
}
#header-2 > #inner-cont {
    padding: 0 12px 0 17px;
    display: flex;
    margin: auto;
    justify-content: space-between;
}

.logged-in-user-name{
    border-radius: 4px;
    color: #fff;
    text-transform: capitalize;
}

.nav-user-container{
    background-color: #9076FE;
}

.nav-user-container:hover{
    background-color: #9076FE !important;
}

.logged-in-user-name:hover{
    cursor: pointer;
}
/*New*/
.nav-user-container {
    position: relative;
}

#user-actions {
    min-width: 185px;
    position: absolute;
    border-radius: 4px;
    padding: 10px 0px;
    display: none;
    z-index: 1000;
    top: 100%; /* Position the dropdown below the username */
    right: 0px;   /* Align it with the left edge of the username */
}

#sub-menu-bx{
    padding: 10px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    border: 1px solid #fefefe;
}

#user-actions li {
    list-style-type: none;
    line-height: 40px;
    background-color: rgba(233,233,252,0.30);
    padding: 0 10px;
    border-radius: 4px;
    margin: 5px 0;
}
#user-actions li:hover {
    background-color: rgba(233,233,252,1.00);
}
#navigation-cont li #user-actions > li:hover a  {
    color: rgba(40,112,239,1.00); 
}

/*new end*/

#herosection {
    width: 100%;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
#hero-section-heding {
    font-size: 45px;
    color: #fff;
}
#search-input-cont {
    background-color: #ffffff50;
/*    border-radius: 4px;*/
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: center;
    padding: 10px;
    gap: 15px;
}
#search-cruise {
    line-height: 40px;
    background-color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 18px;
    margin: 0;
}
#submit-btn {
    border-radius: 4px;
    background-color: #9076FE;
    border: none;
    color: #fff;
    font-weight: 500px;
    padding: 0 10px;
    margin: 0;
}
#submit-btn:hover {
    cursor: pointer;
}
#admin_name {
    color: #fff;
}
/*login page*/
#cont {
    width: 100%;
    padding: 10px;
    padding-bottom: 20px;
    display: flex;
}
#subCont {
    margin: auto;
    height: 100%;
    border-radius: 20px;
    flex-shrink: 1;
    background-image: linear-gradient(to right bottom, #00933b, #07FF23);
}
/********** Login page css start from here *************/
#loginSubCont {
    margin: auto;
    height: 100%;
    border-radius: 20px;
    padding-top: 10px;
    background-image: url("img/more-leaves-on-green.png");
}
#loginBx {
    color: #fff;
}
#logHead {
    color: #333;
    padding-top: 20px;
    text-align: center;
}
#loginForm {
    margin: auto;
    margin-top: 20px;
    width: 340px;
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    box-shadow: 0 0 10px rgba(8, 7, 16, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.13);
}
#loginForm a, #loginForm span {
    color: #000;
    font-size: 14px;
}
#loginForm span {
    text-align: left;
}
#loginForm a {
    display: inline-block;
    padding: 10px;
}
input[type="text"], input[type="password"], input[type="email"]{
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 5px;
    border-radius: 4px;
    border: none;
    color: #000;
    background-color: #E8E8E8;
}
#repass {
    margin-bottom: 20px;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus {
    color: #000;
    outline: none;
}
#loginForm > label {
    color: #333;
    margin-bottom: 0px;
    font-size: 14px;
    display: inline-block;
    width: 130px;
/*    height: 40px;*/
}
#regMsg {
    color: #333;
    display: inline-block;
    width: 150px;
    height: 20px;
    margin-left: 50px;
}
input[type="submit"] {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    margin-bottom: 10px;
    margin-top: 10px;
    color: #fff;
    border: 1px solid #9076FE;
    background-color: #9076FE;
}
input[type="button"] {
    width: 176px;
    height: 40px;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    margin-bottom: 10px;
    border: none;
    color: #fff;
    background-color: #000;
}
/********** Login page css end from here *************/
/*Search page*/
#search-input-cont {
    margin-top: 15px;
    background-color: #ffffff;
}



#search-input-cont form {
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}
#search-cruise {
    width: 100%;
    line-height: 50px;
    background-color: #9076FE50;
    border-radius: 4px;
    font-size: 16px;
}
#submit-btn {
    width: auto;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 16px;
}
/********** Register page css start from here *************/
#regiter-form-cont {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
#regiter-form-cont a, #regiter-form-cont span, #regiter-form-cont label {
    color: #333;
    font-size: 14px;
}



form#register select{
    width: 100%;
    padding: 10px;
    font-size: 15px;
    margin-bottom: 5px;
    border-radius: 4px;
    outline: none;
    color: #000;
    background-color: #E8E8E8;
    border: 1px solid #E8E8E8;
}
form#register select option{
    width: 100%;
    padding: 10px;
    background-color: #E8E8E8;
    border: 1px solid #E8E8E8;
}

#regiter-form-cont span {
    text-align: left;
}
#regiter-form-cont a {
    display: inline-block;
    color: #333;
}
#regSubCont {
    margin: auto;
    height: 100%;
    border-radius: 20px;
    /*    background-color: rgba(33,103,1,0.15);*/
    background-image: url("img/more-leaves-on-green.png");
}
#regBx {
    margin: auto;
    color: rgba(33, 103, 1, 1.00);
    padding: 20px;
    margin-top: 20px;
    width: 360px;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    box-shadow: 0 0 10px rgba(8, 7, 16, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.13);
}
#regHead {
    color: #333;
    text-align: center;
}
#loginQtag {
    display: inline-block;
    margin-left: 40px;
    margin-right: 20px;
    color: #fff;
}
#loginBtn {
    font-size: 18px;
}
#register > label {
    display: inline-block;
    width: 275px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #fff;
}
/********** Register page css end from here *************/
/****************** Alert CSS Start ******************/
.cf-alert-notification {
    width: 400px;
    height: 50px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 20px;
    left: 36%;
    border-radius: 4px;
    box-shadow: 0 0px 1px rgba(8, 7, 16, 0.6);
    background-color: rgba(255, 0, 0, 0.80);
    color: #fff;
    z-index: 10000;
}
#alert {
    background-color: rgba(12, 175, 0, 0.5);
    color: #fff;
}
.cf-alert-notification > h1 {
    font-size: 16px;
}

.cf-already-exist{
    background-color:rgba(247,44,47,1.00) !important;
}
#closeBtn {
    background-color: #fff;
    padding: 2px 7px;
    color: #333;
    border-radius: 4px;
    font-weight: 900;
    letter-spacing: 1.5px;
    font-size: 25px;
    line-height: 25px;
}
#alert:target {
    display: none;
}
#passError:target {
    display: none;
}
/****************** Alert css end ******************/
/*Search result*/
#cf-search-result {
    background-color: #fff;
    border-radius: 4px;
    padding-top: 170px;
    padding-left: 10px;
    
}

#cf-report-search-result{
    background-color: #fff;
    border-radius: 4px;
    padding-top: 67px;
/*    padding-left: 4px;*/
}
.fixture-data-table {
/*    width: 100%;*/
    border: 1px solid #000;
    border-radius: 4px;
    border-collapse: collapse;
    margin-bottom: 10px;
    table-layout: fixed;
    min-width: max-content;
}

.fixture-data-table tbody tr:nth-child(even) {
            background-color: #f2f2f2; 
}

.fixture-data-table tr td, .fixture-data-table tr th, .fixture-data-table tr {
    border: 1px solid #ccc;
}
.fixture-data-table tr td, .fixture-data-table tr th {
    vertical-align: top;  
    padding: 10px;
    font-size: 14px;
    max-width: 340px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fixture-data-table tr th{
    background-color: #9076FE;
    color: #fff;
    border: 1px solid #9076FE;
    border-right-color: #ccc;
    position: sticky;
    top: 158px;
}
#cf-report-table tr th{
    top: 150px;
}


.cf-single-data-url {
    color: rgba(66, 143, 236, 1.00);
}

.cf-single-data-url:hover {
    text-decoration: underline;
}


/******** Dashboard: index.php (START)*/
#cf-dashboard-hero-section {
    height: 100%;
}

#search-input-cont{
    position:fixed;
    top: 70px;
    width: 100%;
}

#cf-search-result .fixture-data-table .flexible-table-cell{
    max-width: 350px;
    height: auto;
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word;
}

/******** Dashboard: index.php (END)*/
/******* fixture form stye *******/
label {
    font-family: "DM Sans", sans-serif;
    font-weight: 100;
    font-size: 14px;
    color: #333;
}
#cf-form-container {
    max-width: 1200px;
    margin: 0 auto;
}
.cf-form {
    display: flex;
    flex-wrap: wrap;
}
.cf-form-section {
    flex: 1;
    padding: 10px;
}

.cf-form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}
.cf-form-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.cf-form-submit {
    width: auto;
    padding: 10px 20px;
    background-color:#9076FE;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
.cf-form-submit:hover {
    background-color: #45a049;
}
/* Centered headings */
.cf-form-heading {
    text-align: center;
    margin-bottom: 20px;
}
/*css-om*/
.cf-fixture-main-content-area {
    background-color: #F4F5FF;
    padding-bottom: 20px;
}
#cf-fixture-form-container {
    background-color: #F4F5FF;
}
#cf-fixture-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    margin: 20px;
    border-radius: 4px;
    gap: 20px;
    background-color: #Fff;
    border: 1px solid #dad9da;
}

.cf-form-category-bx {
    padding: 20px;
    border-radius: 4px;
    flex: 1 1 100%;
}
.cf-form-category-heading {
    text-align: center;
    font-size: 24px;
    font-family: 700;
    padding: 5px 10px;
    color: #05445E;
/*    border-bottom: 1px solid #dad9da;*/
}
/*    input bx*/
.cf-form-input-wrapper-bx {
    border-radius: 4px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 20px;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background-color: #3739AC10;
}
.cf-form-row {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 10px;
    width: 100%;
}

#cf-fixture-form label {
    text-align: left;
    color: #1D1E20;
    font-size: 14px !important;
    font-weight: 500;
}
#cf-fixture-form input, #cf-fixture-form select, #cf-fixture-form textarea {
    outline: 1px solid #dad9da;
    border: 1px solid #fff;
    padding: .85em 1.15em;
    font-weight: 400;
    line-height: 1.25;
    background-color: #fff;
    transition: all .1s ease-in-out;
    font-size: 14px;
    resize: hidden;
    overflow-y: none;
    min-width: 390px;
    flex: 1 1 auto;
}
.input-field-wrapper{
    display: flex;
    flex-direction: column;
    width: 100%;
    
}

/*Date format change Start */
.calender-icon-wrapper img:hover{
        cursor: pointer;
    }

.input-field-wrapper{
        position: relative;
}

 .date-inputs{
        position: relative;
        width: 100%;
    }
    
.hidden-input-wrapper{
        position: absolute;
        top: 0px;
        width: 100%;
        
    }
    
.calender-icon-wrapper{
        display: flex;
        justify-content: flex-end;
        padding: .85em 1.15em;
    }
    
.hidden-date-input{
        position: absolute;
        top: 0px;
        width: 100%;
        opacity: 0;
        padding: .85em 1.15em;
}


/*Date format change End */

#cf-fixture-form option {
    font-family: DM Sans, Roboto, sans-serif;
}
#cf-fixture-form input:hover, #cf-fixture-form select:hover, #cf-fixture-form textarea:hover {
    /*        border: 1px solid #999;*/
}
#cf-fixture-form input:focus, #cf-fixture-form select:focus, #cf-fixture-form textarea:focus {
    border: 1px solid #999;
}
#cf-fixture-form .cf-form-submit-btn {
    width: 100%;
    background-color: #9076FE;
    padding: 10px;
    font-size: 18px;
    border-radius: 4px;
    border: none;
}
#cf-fixture-form .cf-form-submit-btn:hover {
    background-color: #3487F3;
}

.dynamic-height-field{
    max-height: 400px;
    overflow-y: auto; /* Use auto to show scrollbar only when needed */
    resize: none; 
}
/***************************** Single cruise data *******************************/
#cf-sd-content-area, #cf-fixture-form-container {
    background-color: #F4F5FF;
    margin-top: 80px;
  padding-top: 5px;
}
#cf-single-data-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 4px;
    gap: 20px;
    background-color: #Fff;
    border: 1px solid #3739AC;
}


/*---------------Tab style --------------*/
.tab-btn-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.tab-btn-container button {
    padding: 10px 30px;
    margin-right: 5px;
    font-size: 16px;
    font-family: DM Sans, Roboto, sans-serif;
    border-radius: 4px;
    border: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.5s;
    position: relative;
    background-color: #DFE0F7;
}
.tab-btn-container button.active {
    background-color: #9076FE;
    color: white;
    margin-bottom: 20px;
    transition: background-color 0.1s;
    position: relative;
}
.tab-btn-container button.active::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #9076FE; /* Color of the arrow */
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    transition: border-top 0.3s;
}
.tabcontent {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(100%);
}
.tabcontent.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
#cf-data-tab-wrapper {
    margin: 20px;
    border-radius: 4px;
}
.cf-sd-category-bx {
    padding: 20px;
    border-radius: 4px;
}
.cf-sd-category-heading {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    padding: 5px 10px;
    color: #05445E;
}
.cf-sd-category-h2-bx {
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cf-edit-fiture-data-btn {
    padding: 10px 30px;
    margin: 10px 0;
    font-size: 16px;
    font-family: DM Sans, Roboto, sans-serif;
    border-radius: 4px;
    border: none;
}
.cf-edit-fiture-data-btn:hover {
    background-color: #9076FE;
    border: none;
    color: #fff;
}

#cf-delete-btn:hover{
    background-color:rgba(251,130,132,1.00);
}
.cf-edit-fiture-data-btn:hover > a {
    color: #fff;
}
.cf-sd-row-wrapper-bx {
    border-radius: 4px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.cf-sd-row {
    display: flex;
    gap: 10px;
    align-items: start;
    justify-content: center;
/*
    padding: 15px 20px;
    min-height: 44px;
*/
    width: 100%;
}
/*
.cf-sd-row:nth-child(even) {
    background-color: #CFCFCF08;
}
.cf-sd-row:nth-child(odd) {
    background-color: #CFCFCF20;
}
*/
.cf-sd-cell {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: start;
    gap: 10px;
  padding: 10px;
}
.cf-sd-cell-h3 {
    width: 200px;
    text-align: right;
    color: #1D1E20;
    font-size: 14px !important;
    font-weight: 600;
    min-height: 40px;
    padding: 10px;

/*    white-space: nowrap;*/
}
.cf-sd-cell-data {
    font-size: 14px;
    font-weight: 400;
/*    padding: 8px;*/
    box-sizing: border-box;
    color: #555;
    max-height: 300px;
  overflow-y: auto;
    border: 1px solid #eee;
    padding: 10px;
    width: 100%;
    min-height: 40px;
    background-color: #fff;
    border-radius: 4px;
}
/*update fixture data form*/
.update-fixture-form #cf-cargo-id, .update-fixture-form #cf-fixture-id {
    background-color: #E5E5E550;
    border: 1px solid #E5E5E550;
}
.update-fixture-form #cf-cargo-id:focus, .update-fixture-form #cf-fixture-id:focus {
    background-color: #E5E5E550;
    border: 1px solid #E5E5E550;
}
.update-fixture-form #cf-cargo-id:hover, .update-fixture-form #cf-fixture-id:hover {
    cursor: not-allowed;
}
/*documents url*/
.cf-doc-url {
    color: rgba(13, 5, 207, 1.00);
}
/*filter */
#filter-options {
    position: fixed;
    padding: 20px;
    list-style: none;
    border-radius: 4px;
    margin-top: 160px;
    right: 4px;
    height: 460px;
    z-index: 10;
    min-width: 415px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    border: 1px solid #fefefe;
}
#cf-col-cont {
    list-style-type: none;
    height: 290px;
    overflow: auto;
    border: 1px solid #eee;
    padding: 20px;
}

.cf-col-list{
    padding: 0px 10px;
    background-color: whitesmoke;
    margin-bottom: 5px;
    display: flex;
    border-radius: 4px;
/*    justify-content: */
}

.cf-col-list:hover{
    background-color: #E9E9E9;
}

.cf-col-list > label{
    padding: 10px;
/*    background-color: aquamarine;*/
    width: 100%;
}

#cf-column-search {
    border: 1px solid #ccc;
    border-radius: 4px;
}
#cf-filter-btn {
    width: auto;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    border: none;
    color: #fff;
    margin: 0;
}
#cf-filter-btn:hover {
    cursor: pointer;
}
.filter-btn-inactive {
    background-color: #9076FE;
}
.active-filter-btn {
    background-color: rgba(167,154,255,1.00); /* Change the background color here */
}
/*Export page css START*/
.cf-export-content-area {
    width: 100%;
    min-height: 86.8vh;
    align-items: center;
    padding: 5px;
    margin-top: 79px;
}
.cf-export-option-wrapper {
    width: 99.2%;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    position: fixed;
}
.cf-export-page-heading > h3 {
    text-align: center;
    padding: 10px;
}
#cf-export-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.input-daterange, .cf-submit-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cf-from-date-input-wrapper {
    margin-right: 20px;
}
#cf-export-to-csv-btn, #cf-export-submit-btn {
    padding: 15px 30px;
    background-color: #9076FE;
    border-radius: 4px;
    margin: 0;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
#cf-export-to-csv-btn > a {
    color: #fff;
}
#cf-export-form .cf-export-date-input {
    color: #333;
    /*    background-color: #eee;*/
    margin: 0;
    text-align: left;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}
/*fixture id error msg*/
.error-message {
    color: red;
    display: none;
}
/*
.cf-export-form-wrapper form{
    display: flex;
    justify-content: space-between;
}*/
/*hide tab scroll bar*/
.tab-btn-container {
    display: flex;
    overflow-x: auto;
}
/* Hide scrollbar */
.tab-btn-container::-webkit-scrollbar {
    display: none; /* For Webkit-based browsers */
}
.tab-btn-container {
    scrollbar-width: none; /* For Firefox and other browsers */
}

/*delete section*/

#cf-delete-data-confirm-container{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color:rgba(37,37,37,0.59);
    z-index: 5000;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cf-delete-msg-wrapper{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
#cf-delete-msg-wrapper{
    margin: auto;
    width: 420px;
    padding: 20px;
    min-height: 230px;
    backdrop-filter: blur(20px);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(8, 7, 16, 0.3);
    border: 1px solid #ccc;
    background-color: rgba(255, 255, 255);
}
#cf-delete-msg-wrapper h2{
    font-size:18px;
    margin-top: 20px;
    color: #555;
}
#cf-delete-msg-wrapper p{
    font-size:14px;
    margin-top: 5px;
    color: #777;
}

#cf-delete-msg-wrapper p:last-child{
    font-size:14px;
    margin-top: 0;
    font-weight: 600;
}

#cf-delete-confirmation-btns{
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
#cf-back-to-dashboard{
    display: flex;
    justify-content: center;
}

.confirm-btn{
    padding: 10px 30px;
    margin-right: 5px;
    font-size: 16px;
    font-family: DM Sans, Roboto, sans-serif;
    border-radius: 4px;
    border: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.5s;
}

#data-del-yes{
    background-color: rgba(251,130,132,1.00);
    color: #fff;   
}

#data-del-yes:hover{
    background-color: rgba(255,0,4,1.00);
    color: #fff;   
}

#back-to-dashboard{
    background-color: #9076FE;
}

#back-to-dashboard a{
    color: #fff;
}

.deleted-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.deleted-text img{
    width: 80px;
    height: 80px;
}

.deleted-text h2{
    margin-bottom: 50px;
}

/* Tablet and laptop screens (1 column) */
        @media (min-width: 768px) and (max-width: 1367px) {
            .cf-form-category-bx {
                flex: 1 1 100%;
            }
        }

/* Larger than laptop (2 columns) */
        @media (min-width: 1368px) and (max-width: 1599px) {
            .cf-form-category-bx {
                flex: 1 1 48%;
            }
        }

/* X-Large screens (3 columns) */
        @media (min-width: 1600px) {
            .cf-form-category-bx {
                flex: 1 1 30%;
            }
        }


#filter-and-search-form{
/*    margin-top: 240px;*/
}

#head-fixture-list-container{
    border-radius: 4px;
    position: absolute;
    z-index: 100;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    border: 1px solid #fefefe;
}

#search-head-fixture{
    min-width: 370px !important;
    background-color: rgba(55,57,172,0.10) !important;
    color: #000;
    border: none !important;
    outline: none !important;
}

#search-head-fixture:focus{
    border: none;
    outline: none;
}

#head-fixture-list-bx{
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px;
    border: 1px solid #eee;
    border-radius: 4px;
}

#head-fixture-list {
    list-style: none;
    padding: 0;
    margin:0;
}

#head-fixture-list > li {
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 5px;
    transition: background-color 0.1s;
}

#head-fixture-list > li:nth-child(odd) {
    padding: 10px;
    border-radius: 4px;
    background-color: rgba(55,57,172,0.13);
}
#head-fixture-list > li:nth-child(even) {
    background-color: rgba(55,57,172,0.10);
}

#head-fixture-list > li:hover {
    cursor: pointer;
    background-color: #ccc;
    color: #000;
}

