:root {
    --primary-color: #FFFFFF; 
    --background: whitesmoke;
    --background-widget: white;
    --secondary-color: #00000042; 
  }
  *{
    padding: 0;
    margin: 0;  
}
body{
    font-family: 'Cairo', sans-serif;
}

.logo-search img{
    width: 100px;
    height: 100px;
    margin: 0px 15px;
}
.logo-search{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0px 0 91px;
}
.logo-search .form-group{
    display: flex;
    align-items: center;
    gap: 10px;

}
.header-top{
    padding-top: 50px;

}

.logo-search .form-group input{
    border-radius: 20px;
    padding: 10px;
    font-family: 'Cairo', sans-serif;
    border: 1px solid #828D9E66;
}
.logo-search .form-group label{
    color:#8D8D8D ;
    font-family: 'Cairo', sans-serif;
    font-size: 20px;
}


/* side css */

.content{
    padding-top: 60px;
}

    .side-bar {
        border: 1px solid #00000040 ;
        padding: 10px 10px 30px 10px; 
        box-shadow: 1px 1px 3px 1px #00000040;
        border-radius:15px;
    }
    
    nav ul {
        list-style-type: none;
        padding: 0 25px;
        margin: 0;
    }
    
    nav ul li {
        margin-bottom: 25px;
    }
    
    nav ul li a {
        text-decoration: none;
        color: #28282866; 
        font-family: 'Cairo', sans-serif;
        font-size: 17.29px;
        font-weight: 500;

    }
    
    nav ul li a:hover {
        background: linear-gradient(to bottom, #8B2CA0, #03BFC8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent; 
    }

    .side-bar h2 {
        padding-top: 40px;
        padding-bottom: 40px;
        text-align: center;
        font-size: 32.45px;
        font-weight: 700;
        background: linear-gradient(to bottom, #8B2CA0, #03BFC8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent; 
       font-family: 'Cairo', sans-serif;
      

    }
    .icon-log img{
        width: 20px;
        height: 24.45px;
    }
    .icon-log{
        display: flex;
        align-items: center;
        padding-left: 20px;
        gap: 5px;

    }
    .icon-log a{
        font-family: 'Roboto', sans-serif;
        text-decoration: none;
        font-size: 14.75px;
        font-weight: 500;
        color: #1E354E;
    }

    /* side bar css endd */

    .dash-set h3{
        color: #4676B4;
        font-size: 24px;
        font-family: 'Cairo', sans-serif;
        font-weight: 500;
        
    }

    .box img{
       width: 24px;
       height: 24px;
       text-align: center;
       margin: 0 auto;
    }
    .box p{
        font-size: 11.61px;
        color: #224ABD;
        margin: 0;
        
    }
    .box h1{
        font-size: 48.19px;
        font-weight: 700;
        font-family: 'Cairo', sans-serif;
        background: linear-gradient(to bottom, #8B2CA0, #03BFC8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent; 

    }
    .box {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 5px;
        justify-content: center;
        width: 250px;
        padding: 20px;
        box-sizing: border-box; 
        border-radius: 20px;
        background: linear-gradient(white, white) padding-box, 
                    linear-gradient(to bottom, #8B2CA0, #03BFC8) border-box;
        border: 1px solid transparent; 
    }
    
    .boxes_div{
        display:flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .box {
        transition: background 0.5s ease, color 0.5s ease;
    }
    
    .box:hover {
        background: linear-gradient(to bottom, #8B2CA0, #03BFC8);
    }
    
    .box:hover h1,
    .box:hover p {
        color: #FFFF !important;
        background: linear-gradient(to bottom, #ffffff, #ffffff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent; 
    }
    
    /* chart */
  
    .chart-title {
        text-align: center;
        font-size: 18px;
        font-weight: bold;
        color: #808080B0;
        margin-bottom: 20px;
    }

 

    /* notifications css  */
    #Notification_head{
        font-size:26.93px;
        font-weight: 700;
        font-family: 'Cairo', sans-serif;
        color: #000000;
        padding-bottom: 30px;
    }
    .form-box input.form-control {
        padding: 25px;
        border-radius: 26px;
        margin-bottom: 40px;
    }
    .form-box input.form-control::placeholder{
        font-family: 'Roboto', sans-serif;
        color: #8D8D8D;
        font-size: 21.34px;
        font-weight: 400;
    }
    .form-box textarea.form-control::placeholder{
        font-family: 'Roboto', sans-serif;
        color: #8D8D8D;
        font-size: 21.34px;
        font-weight: 400;
    }
    .form-box textarea.form-control {
        border-radius: 26px;
        padding: 25px;
    }

    .upload-container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        background-color: #f4f4f4;
    }
    
    .upload-box {
        border: 2px dashed #ccc;
        border-radius: 10px;
        width: 300px;
        height: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        text-align: center;
        background-color: white;
    }
    
    .file-input {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        cursor: pointer;
    }
    
    .upload-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .upload-icon {
        width: 50px;
        margin-bottom: 10px;
    }
    
    .upload-text {
        font-family: 'Cairo', sans-serif;
        color:#A09696 ;
        font-size: 22.26px;
        font-weight: 600;
    }
    
    .upload-link {
        font-size: 22.26px;
        color: #2572B9; 
        font-weight: 600;
        margin-top: 5px;
        font-family: 'Cairo', sans-serif;
    }
    .form-box label {
        margin-top: 30px;
        padding-bottom: 30px;
        font-family: 'Roboto', sans-serif;
        color: #000000;
        font-size: 21.34px;
    }
    .form-box {
        padding: 50px 10px 60px 10px;
    }

    button.btn.btn-primary.form_btn {
        margin-top: 40px;
        background: linear-gradient(to top, #00C3C9, #8B2CA0); 
        color: white; 
        border: none; 
        padding: 14px 20px; 
        border-radius: 10px; 
        font-size: 25.51px;
        cursor: pointer; 
        transition: background 0.3s ease; 
        width: 100%;
    }



    /* order managemnt */

    #container{
        margin: 0 auto;
        padding-top: 2%;
        border: 1px solid #E0E0E0;
        box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0.05);
        border-radius: 8px;
      }

      /* .cart_box {
        display: flex;
        align-items: center;
        gap: 10px;  
    } */

    .chart-container {
        width: 300px;
        padding: 20px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .header h1 {
        margin: 0;
        color: #4a4a4a;
        font-size: 16px;
    }
    
    .header h2 {
        margin: 0;
        font-size: 36px;
        color: #4a4a4a;
    }
    
    .header span {
        font-size: 12px;
        color: #8a8a8a;
        cursor: pointer;
    }
    
    .legend {
        list-style: none;
        padding: 0;
        margin: 10px 0 0;
        display: flex;
        justify-content: space-around;
    }
    
    .legend li {
        display: flex;
        align-items: center;
    }
    
    .legend .color {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin-right: 5px;
        border-radius: 2px;
    }
    
    .complete { background-color: #52b3d9; }
    .in-process { background-color: #4ecdc4; }
    .refund { background-color: #e94e77; }

    #table_heading{
        margin-top: 30px;
        font-size: 24px;
        font-family: 'Cairo', sans-serif;
        color: rgba(17, 17, 17, 1);

    }
    
.header-title {
    font-size: 24px;
    color: #333;
    padding-bottom: 5px;
    margin-top: 40px;
}

.table-responsive {
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow-x: auto;

}

.custom-table thead {
  background-color: #ffff;
 border: 1px solid rgba(139, 44, 160, 1);
 vertical-align: middle;
}

.custom-table thead th {
    /* border-bottom: 2px solid #ddd; */
    padding: 10px;
    color: #555;
    font-weight: bold;
    text-align: center;
}

.custom-table tbody td {
    padding: 15px;
    vertical-align: middle;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.table-row:hover {
    background-color: #f1f9ff;
}

.product-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.profile-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.payment-icon {
    width: 50px;
    object-fit: contain;
}

.badge {
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 12px;
}

.badge.bg-success {
    background-color: #28a745;
    color: #fff;
}
.date-selector {
    display: inline-flex;
    align-items: center;
    padding: 16px 12px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    margin-bottom: 22px;

}

.icon-container img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.date-selector span {
    margin-right: 8px;
    color: #000;
}

.dropdown-icon {
    font-size: 12px;
    color: #6e6e6e;
}






.chart-container {
    position: relative;
    width: 100%;
    height: 335px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.chart-title {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 14px;
    color: #666;
}

.chart-subtitle {
    position: absolute;
    top: 30px;
    left: 20px;
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

.chart-dropdown {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}


.header-title {
    font-size: 24px;
    color: #333;
    padding-bottom: 5px;
    margin-top: 40px;
}

.table-responsive {
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow-x: auto;

}

.custom-table thead {
  background-color: #ffff;
 border: 1px solid rgba(139, 44, 160, 1);
 vertical-align: middle;
}

.custom-table thead th {
    /* border-bottom: 2px solid #ddd; */
    padding: 10px;
    color: #555;
    font-weight: bold;
    text-align: center;
}

.custom-table tbody td {
    padding: 15px;
    vertical-align: middle;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.table-row:hover {
    background-color: #f1f9ff;
}

.product-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.profile-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.payment-icon {
    width: 50px;
    object-fit: contain;
}

.badge {
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 12px;
}

.badge.bg-success {
    background-color: #28a745;
    color: #fff;
}
.date-selector {
    display: inline-flex;
    align-items: center;
    padding: 16px 12px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    margin-bottom: 22px;
    margin-top: 22px;

}

.icon-container img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.date-selector span {
    margin-right: 8px;
    color: #000;
}

.dropdown-icon {
    font-size: 12px;
    color: #6e6e6e;
}


/* box  */
.card {
    border-radius: 15px;
    margin: 20px auto;
    height: 200px;
}

.store-image img {
    width: 125px;
    height: 120px;
    object-fit: cover;
}

.btn-gradient {
    background: linear-gradient(to left, #00C3C9, #8B2CA0); 
    color: #ffff;
    border: none;
    border-radius: 10px;
    padding: 11px 56px;
    font-size: 15px;
    font-family: 'Cairo', sans-serif;
}
.btn-gradient:hover{
    color: #ffff;
}


.form-check-input:checked {
    background-color: #6a11cb;
    border-color: #6a11cb;
    padding: 10px 10px 10px 31px;
}

.form-check-label {
    margin-left: 5px;
    font-weight: 500;
    font-size: 18px;
    color: rgba(117, 116, 116, 1);
}
.form-switch .form-check-input {
    width: 39px !important;
    padding: 10px 10px 10px 31px !important;
}
.d-flex.justify-content-between.align-items-center {
    padding-top: 10px;
}

.text_set h5{
    font-weight: 700;
    font-size: 24.28px;
    font-family: 'Cairo', sans-serif;
    color: rgba(0, 0, 0, 1);
}
.text_set small{
font-weight: 500;
    font-size: 12.57px;
    font-family: 'Cairo', sans-serif;
    color: rgba(0, 0, 0, 1);
}
.form-switch {
    padding-left: 6.5em;
}
.text-end{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}


.chartjs-wrapper {
    border: 1px solid #e5e5e5;
    margin-bottom:30px;
    width: 100%;
    .chartjs {
      min-height: 200px;
    }
  }

  .tabs{
    border-bottom: 2px solid  rgba(117, 116, 116, 1);
  }
  .nav-link:focus, .nav-link:hover {
    color: rgba(0, 0, 0, 1);


}

.nav-link{
    font-size:18.86px ;
    color:rgba(117, 116, 116, 1) ;
    font-weight:500 ;
    font-family: 'Cairo', sans-serif;

}
.nav-tabs .nav-link {
    border: 1px solid #fff;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    border-color: #ffff;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    border-bottom: 2px solid #6a11cb;

}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border-color: #ffff;
    isolation: isolate;
    border-bottom: 2px solid #6a11cb;
}

.form-check.form-switch.mt-2 {
    position: relative;
}

label#inctive {
    position: absolute;
    left: 0;
    right: 111px;
    top: 1px;
}

.customer-card {
    background-color: #f8f9fa;
    padding: 35px 40px 19px 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Arial, sans-serif;
}

.customer-info {
    display: flex;
    align-items: center;
}

.customer-info img {
    border-radius: 50%;
    width: 90px;
    height: 90px;
    margin-right: 15px;
}

.customer-details {
    font-size: 13.57px;
    font-family: 'Cairo', sans-serif;
    color: rgba(0, 0, 0, 1);
}

.customer-details .name {
    font-weight: 700;
    font-size: 24.28px;
    font-family: 'Cairo', sans-serif;
    color: rgba(0, 0, 0, 1);

}

.customer-actions a {
    color: rgba(86, 86, 86, 1);
    font-size: 13px;
    margin-left: 15px;
    text-decoration: none;
}

.customer-actions a:hover {
    text-decoration: underline;
}

.customer-actions i {
    margin-right: 5px;
}
.meta {
    display: flex;
    gap: 19px;
    align-items: center;
}
.customer-actions {
    margin-top: 30px;
}




.tabs_container {
    padding-top: 50px;
}


.p-1.bg-light.rounded.rounded-pill.shadow-sm.mb-4 {
    border: 1px solid rgba(225, 225, 225, 1);
}

.top-cat_sec img{
    width: 230px;
    height: 188.99px;
    border-radius: 10px;
}

.top-cat_sec p{
    font-size:18.2px;
    color:rgba(13, 13, 13, 1);
    font-weight:600;
    font-family: 'Cairo', sans-serif;
    padding-top: 5px;
}
.top-categories h1{
    font-size:24.75px;
    color:rgba(40, 40, 40, 1);
    font-weight:700;
    font-family: 'Cairo', sans-serif;
    padding-top: 15px;
    padding-bottom: 15px;

}
.featured-products {
    padding-top: 30px;
  padding-bottom: 30px;

}

.featured-products h1 {
    font-size: 24.75px;
    color: rgba(40, 40, 40, 1);
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    padding-top: 15px;
    padding-bottom: 15px;
}

.featured-products .row {
    display: flex;
    gap: 15px;
}

.feature_sec {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
}

.feature_sec img {
    width: 180px;
    height: 177px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.feature_sec .badge {
    position: absolute;
    top: 16px;
    left: 3px;
    background-color: rgba(255, 161, 73, 1);
    color: rgba(255, 255, 255, 1);
    padding: 5px 16px;
    font-size: 9.59px;
    border-radius: 3px;
    font-family: 'Cairo', sans-serif;
    
}

.feature_sec p {
    font-size: 12px;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 5px;
    font-family: 'Cairo', sans-serif;
}

.price_sec h6 {
    font-size: 17px;
    color: rgba(0, 0, 0, 1);
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Cairo', sans-serif;
}

.price_sec del {
    color: #999;
    font-size: 12px;
}

.price_sec span {
    display: block;
    font-size: 12px;
    color: #FF3E3E;
    font-weight: bold;
}
.price_sec{
    font-size: 12px;
    color: rgba(117, 116, 116, 1);
    font-family: 'Cairo', sans-serif;
}

.price_sec img{
    width: 4px;
    height: 4px;
}
.price_sec {
    display: flex;
    gap: 8px;
    align-items: baseline;
}
.featured-products .col-md-2 {
    flex: 0 0 auto;
    width: 18.666667% !important;
    padding: 5px !important;
}
.all-products h2{
    font-size: 24.75px;
    color: rgba(40, 40, 40, 1);
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    padding-top: 15px;
    padding-bottom: 15px;
}
.all-products{
    padding-bottom: 50px;
}

.all-products #sortDropdown {
    font-size: 10.4px;
    color: rgba(28, 28, 28, 1);
    font-weight: 500;
    border-radius: 20px;
    font-family: 'Cairo', sans-serif;
    border: 1px solid rgba(219, 219, 219, 1);
    padding: 10px 30px;
}
span.me-2 {
    font-size: 12.92px;
    color: rgba(28, 28, 28, 1);
    font-weight: 500;
    font-family: 'Cairo', sans-serif;
}
.all-products .col-md-2 {
    flex: 0 0 auto;
    width: 18.666667% !important;
    padding: 5px !important;
}
.all-products .row {
    display: flex;
    gap: 15px;
}

.pagination,
.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.pagination {
 padding: 0px 0 50px 0;
}

.btn-nav,
.btn-page {
  background-color: #fff;
  cursor: pointer;
}

.btn-nav {
  padding: 8px;
}

.btn-nav {

  border: 1.5px solid #ffff;
  font-size: 10.16px;
  color: rgba(70, 70, 70, 1);
  font-weight: 500;
  font-family: 'Cairo', sans-serif;
}

.btn-nav:hover,
.btn-page:hover {
  background-color: rgba(139, 44, 160, 1);
  color: #ffff;
}

.btn-page {
  border: none;
  width: 36px;
  height: 36px;
  font-size: 12px;
  color: rgba(167, 167, 167, 1);
}

.btn-selected {
  background-color: rgba(139, 44, 160, 1);
  color: #ffff;
}

.about-sec{
    padding: 30px 0;
}
.about-sec h1{
    font-size: 25.2px;
    color: rgba(40, 40, 40, 1);
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    padding-top: 15px;
    padding-bottom: 15px;
}
.about-sec p{
    font-size: 19.13px;
    color:rgba(22, 22, 22, 1);
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 35px;

}

#extra_pra{
    margin-top: 20px;
    font-size: 19.13px;
    color:rgba(22, 22, 22, 1);
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
}
.seller_system p{
    font-size: 18.74px;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 21px;

}
.seller_system span{
    font-size: 18.74px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    color: rgba(117, 116, 116, 1);
    margin-bottom: 15px;


}
.seller_system {
    display: flex;
    align-items: center;
    padding-top: 20px;
    gap: 45px;
    border-top: 2px solid rgba(231, 231, 231, 1);
    border-bottom: 2px solid rgba(231, 231, 231, 1);
}
.text-about {
    width: 740px;
}
.text-top-seller{
    width: 740px;
    padding-top: 60px;

}


.rating-bar {
    font-size: 14px;
}

.progress {
    height: 8px;
    border-radius: 20px;
}

.progress-bar {
    background-color: rgba(89, 193, 164, 1);
}

.feedback-sec h3,h5{
    font-size: 25.54px;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    color:rgba(0, 0, 0, 1);
    margin-bottom: 15px;
}
.text-month{
    font-size: 18.44px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    color:rgba(117, 116, 116, 1);
    margin-bottom: 15px;
}

.rating-bar {
    font-size: 16.13px;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    color:rgba(90, 90, 90, 1);
}
.feedback-sec .col-4 {
    padding-bottom: 20px;
}

.feedback-sec .d-flex.justify-content-between.align-items-center {
    padding-top: 10px;
    padding-bottom: 20px;
}

.feedback-sec #sortDropdown {
    font-size: 10.4px;
    color: rgba(28, 28, 28, 1);
    font-weight: 500;
    border-radius: 20px;
    font-family: 'Cairo', sans-serif;
    border: 1px solid rgba(219, 219, 219, 1);
    padding: 10px 30px;
}
/* span.me-2 {
    font-size: 12.92px;
    color: rgba(28, 28, 28, 1);
    font-weight: 500;
    font-family: 'Cairo', sans-serif;
} */

.feedback-sec h2{
    font-size: 24.75px;
    color: rgba(40, 40, 40, 1);
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    padding-top: 15px;
    padding-bottom: 15px;
}

.card-section .card {
    border-radius: 10px;
    border: 2px solid rgba(221, 221, 221, 1);
    height: 230px;
    position: relative;
   
}
#pos{
position: absolute;
position: absolute;
top: 90px;
right: 0;
left: 16px;
font-size: 16px;
font-family: 'Cairo', sans-serif;
color: rgba(0, 0, 0, 1);
}

.card-section img {
    width: 60px;
    height: 60px;
}

.card-section .card p {
    font-size: 16px;
font-family: 'Cairo', sans-serif;
color: rgba(0, 0, 0, 1);
font-weight: 700;
}

.card-section .text-primary {
    color: #B61FF9 !important;
}

.card-section .shadow-sm {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}
.card-section .text-set {
    font-size: 35px;
    color: rgba(250, 193, 6, 1);
}
.card-section .prah_comment{
    font-size: 16px !important;
    font-family: 'Cairo', sans-serif !important;
    color: rgba(0, 0, 0, 1) !important;
    font-weight: 400 !important  ;
}
.card-section hr:not([size]) {
    height: 2px;
}
.btn-feedback {
    margin-top: 40px;
    background: linear-gradient(to bottom, #8B2CA0, #03BFC8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 2px solid; 
    border-image: linear-gradient(to bottom, #8B2CA0, #03BFC8) 1; 
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 25.51px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 40px;
}
.button_feedback {
text-align: center;
}

/* order detail page css */



.map-section {
    margin-bottom: 20px;
}

.map-image {
    width: 100%;
    border-radius: 8px;
}

.delivery-status {
    background-color: #f9fafb;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.delivery-status h4 {
    margin-top: 0;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.delivery-status p {
    margin: 5px 0;
    color: #555;
}

.status-dropdown {
    margin-top: 10px;
}

.status-btn {
    background-color: #f2f3f5;
    padding: 8px 32px;
    border-radius: 20px;
    border: none;
    color: #000;
    font-weight: 500;
    cursor: pointer;
    font-size: 15px;
    background: linear-gradient(white, white) padding-box, linear-gradient(to bottom, #8B2CA0, #03BFC8) border-box;
    border: 1px solid transparent;
    
}

.status-btn i {
    margin-left: 10px;
}

.end-date {
    display: block;
    margin-top: 10px;
    color: rgba(239, 42, 42, 1);
    font-size: 16.52px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.order-items {
    margin-bottom: 20px;
    padding-top: 40px;

}

.order-items h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.item {
    display: flex;
    margin-bottom: 20px;
}

.product-image {
    width: 197.03px;
    height: 160.96px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.item-details {
    flex-grow: 1;
}

.item-name {
    font-size: 18.11px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Cairo', sans-serif;
    color: rgba(14, 14, 14, 1);
    width: 420px;

}

.item-price {
    font-size: 18.11px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Cairo', sans-serif;
    color: rgba(26, 26, 26, 1);
}

.item-size span {
    display: inline-block;
    margin-left: 5px;
    padding: 2px 6px;
    background-color: #f2f3f5;
    border-radius: 4px;
    font-size: 14px;
    color: rgba(52, 52, 52, 1);
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
}

.quantity {
    display: flex;
    align-items: center;
}

.quantity label {
    margin-right: 10px;
    font-size: 22.11px;
    color:rgba(117, 116, 116, 1);
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    width: max-content;
}

.quantity input {
    width: 50px;
    padding: 3px;
    font-size: 16px;
    border: 2px solid rgba(0, 0, 0, 0.51);
    border-radius: 4px;
    text-align: center;
    color:rgba(117, 116, 116, 1);
    font-size: 22.11px;

}

.price-details {
    font-size: 18.11px;
    color:rgba(41, 41, 41, 1);
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    padding-top: 25px;

    
}

.price-details p {
    margin: 5px 0;
    padding-bottom: 10px;
}

.price-details hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 10px 0;
}

.total {
    font-weight: 700;
    font-size: 18px;
}

.details-section {
    padding-top: 35px;
    padding-bottom: 50px;
}

.customer-detail, .seller-detail {
    width: 48%;
}


.profile-card {
    background-color: #f9fafb;
    padding: 15px;
    border-radius: 8px;
    display: flex;
}

.profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.profile-info {
    flex-grow: 1;
}

.profile-name {
    font-weight: 700;
    font-size: 16px;
}

.profile-email, .profile-address {
    font-size: 14px;
    color: #555;
    margin: 2px 0;
}

.chat-btn {
    margin-top: 10px;
    background-color: #03bfc8;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
}
.order_head_txt{
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.delivery-status{
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.order_head_txt h4{
    font-size: 24.75px;
    color:rgba(17, 17, 17, 1);
    font-weight: 700;
    font-family: 'Cairo', sans-serif;


}
.order_head_txt p{
    font-size: 17px;
    color:rgba(117, 116, 116, 1);
    font-weight: 400;
    font-family: 'Cairo', sans-serif;

}

svg.svg-inline--fa.fa-chevron-down {
    font-size: 14px !important;
}

.order-items h4{
    font-size: 30.75px;
    color:rgba(13, 18, 23, 1);
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
}
.total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22.61px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;

}

.total-sub{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* CARD */
.detail-card {
    border: 1px solid rgba(233, 233, 233, 1);
    border-radius: 8px;
    padding: 25px 20px 25px 20px;
    background-color: rgba(252, 252, 252, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.detail-header {
    
        font-family: 'Roboto', sans-serif;
        font-size:24.49px ;
        color:rgba(70, 118, 180, 1) ;
        font-weight: 700;
    
}

.detail-body {
    display: flex;
}

.detail-body img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.detail-body div {
    display: flex;
    flex-direction: column;
}

.detail-body .detail-item {
    margin-bottom: 5px;
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
    color: rgba(43, 43, 43, 1);
}

.detail-body .chat-link {
    color: rgba(43, 43, 43, 1);
    text-decoration: none;
    font-size: 14px;
    margin-top: 10px;
}

.detail-body .chat-link:hover {
    text-decoration: underline;
}

.order_item_txt h1{
    font-size:24.61px ;
    color:rgba(0, 0, 0, 1) ;
    font-weight:700 ;
    font-family: 'Cairo', sans-serif;
}

.order_item_tab_head {
    
    font-family: 'Cairo', sans-serif;
    font-size:22.97px ;
    color:rgba(0, 0, 0, 1);
    font-weight: 400;

}

.seller_order_card {
    background-color: white;
    border-radius: 8px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.order-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.order-details {
    flex-grow: 1;
    margin-left: 20px;
}

.order-number {
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

.order-title {
    font-size: 16px;
    color: #555;
}

.order-size {
    font-size: 14px;
    color: #777;
}

.refund-requested {
    font-size: 14px;
    font-weight: bold;
    color: red;
}


.review-head {
    padding-top: 20px;
    font-size: 34.16px;
    color: rgba(36, 36, 36, 1);
    font-weight:700 ;


}