.order-confirmation-section, .order-confirmation-section-failed {
    text-align: center;
    padding: 60px 0;
}

.order-confirmation-section h2 {
    color: #36B96A;
}

.order-confirmation-section-failed h2 {
    color: #E23744;
}

.order-details-section-outer {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.order-details-section {
    margin: auto;
    padding: 40px;
}

.text-grey {
    color: #959697;
}

h4 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.order-summary-table, .order-details-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

.order-summary-table td, .order-details-table td, .order-details-table th {
    padding: 15px 10px;
}

.order-summary-table td {
    padding: 15px 0px;
}


.th-background {
    background-color: #E7E7E7;
}

.order-summary {
    font-size: 1.1rem;
    margin-top: 30px;
}

.order-summary .total {
    font-weight: 700;
    font-size: 1.3rem;
}

.info-section, .payment-method {
    font-size: 1rem;
    line-height: 1.8;
}

.info-section h4, .payment-method h4 {
    font-weight: 600;
}

.info-section p, .payment-method p {
    margin-bottom: 5px;
    color: #333;
}

.order-details-table td {
    font-size: 16px;
}

.continue-shopping {
    margin-top: 40px;
    display: inline-block;
    padding: 12px 30px;
    background-color: #242124;
    color: #F3E5AB;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}

.continue-shopping:hover {
    background-color: #333;
}

.order-details-section h2 {
    font-size: 24px;
}

.info-table td, .payment-table td {
    padding: 8px 0; /* Adjust padding as needed */
}
.table-borderless td, .table-borderless th {
    border: none; /* Remove borders for cleaner look */
}
.info-section, .payment-method {
    margin-bottom: 20px; /* Add space between sections */
}
.success-circle img {
    height: 160px;
}
.order-header {
    text-align: left;
    background-color: #282728;
    border-top-left-radius: 15px;  /* Apply rounding only to the top-left corner */
    border-top-right-radius: 15px; /* Apply rounding only to the top-right corner */
}

/* General Styling */
.cart-title {
font-family: 'Poppins', sans-serif;
font-size: 32px;
margin-bottom: 20px;
}

.cart-items-container {
background-color: #f8f9fa;
border-radius: 10px;
padding: 20px;
}

.cart-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
}

.cart-item-image {
width: 80px;
/* height: 100px; */
object-fit: cover;
border-radius: 10px;
}

.cart-item-info {
max-width: 200px;
margin-left: 15px;
}

.cart-item-name {
font-size: 18px;
font-family: 'Poppins', sans-serif;
color: #333;
}

.cart-item-description {
font-size: 14px;
color: #666;
}

.cart-item-price {
font-size: 16px;
font-weight: bold;
color: #242124;
margin-top: 10px;
}

.cart-item-actions {
display: flex;
align-items: center;
}

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

.quantity-btn {
width: 36px;
height: 36px;
font-size: 20px;
font-weight: bold;
display: flex;
justify-content: center;
align-items: center;
background-color: #f1f1f1;
border: 1px solid #ddd;
border-radius: 50%;
}

.quantity-btn:hover {
background-color: #ccc;
}

.cart-item-quantity {
width: 40px;
text-align: center;
margin: 0 10px;
border: none;
background-color: transparent;
border-radius: 5px;
padding: 0px;
}

.cart-summary {
margin-top: 20px;
}

.summary-title {
font-family: 'Poppins', sans-serif;
font-size: 20px;
margin-bottom: 20px;
}

.summary-item {
font-size: 14px;
color: #4F5052;
display: flex;
justify-content: space-between;
padding: 8px 0;
font-weight: 400;
}

.summary-total {
    font-size: 16px;
    font-weight: 500;
    color: #282728;
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.btn-block {
border-radius: 8px;
border-color: transparent;
}

.btn-outline-danger {
border-color: #f44336;
color: #f44336;
}

.btn-outline-danger:hover {
background-color: #f44336;
color: #fff;
}

.remove-cart-item {
padding: 4px 18px 4px 18px;
background-color: #282728;
color: #ffffff;
border: none;
border-radius: 8px;
}

/* Mobile View Adjustments */
@media (max-width: 767px) {
.cart-item {
    flex-direction: column;
    align-items: flex-start;
}

.cart-item-details {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 15px;
}

.cart-item-info {
    margin-left: 0;
    margin-top: 10px;
    max-width: 100%;
}

.cart-item-actions {
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
}

.quantity-selector {
    margin-top: 10px;
}

.summary-box {
    padding: 20px;
}

.cart-item-image {
    width: 80px;
    height: 80px;
}

.summary-title {
    font-size: 18px;
}

.summary-total {
    font-size: 16px;
}
}




/* Checkout Page Styling */
.checkout-title {
font-family: 'Poppins', sans-serif;
font-size: 32px;
margin-bottom: 20px;
}

.billing-details-container {
background-color: #f8f9fa;
border-radius: 10px;
padding: 20px;
}

.section-title {
font-family: 'Poppins', sans-serif;
font-size: 20px;
margin-bottom: 20px;
}

.form-control {
border-radius: 5px;
font-size: 16px;
}


.order-summary-container {
border-radius: 10px;
}



.account-dashboard-section {
/* background-color: #f9f9f9; */
}

.account-sidebar {
border-radius: 15px !important;
box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
}

.account-sidebar .card-header {
background-color: #242124;
color: #F3E5AB;
font-family: 'Poppins', sans-serif;
border-top-left-radius: 15px;  /* Apply rounding only to the top-left corner */
border-top-right-radius: 15px; /* Apply rounding only to the top-right corner */
}


.account-sidebar .list-group-item {
border: none;
}

.account-welcome, .recent-orders, .account-details {
background-color: white;
border-radius: 15px;
box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
}

.account-welcome .card-body h3 {
font-family: 'Poppins', sans-serif;
}

.account-details .card-body p {
margin-bottom: 10px;
}


.recent-orders .table {
margin-bottom: 0;
}

.recent-orders .table th, .recent-orders .table td {
border-top: none;
}

.recent-orders .table td {
vertical-align: middle;
}

.badge {
font-size: 14px;
padding: 5px 10px;
border-radius: 8px;
width: 100px;
font-weight: normal;
}

.list-group-item {
font-family: 'Poppins', sans-serif;
font-size: 16px;
color: #4F5052;
}

.list-group-item:hover {
text-decoration: none;
}

/* Add padding to the table cells for mobile */
@media (max-width: 767px) {
.order-details-table td, .order-details-table th {
    padding: 10px 5px;
    font-size: 14px;
}

.order-details-table td a {
    padding: 6px 10px;
    font-size: 14px;
}

.recent-orders .btn {
    font-size: 14px;
    padding: 5px 10px;
}
}

/* Badge responsiveness */
@media (max-width: 767px) {
.badge {
    font-size: 12px;
    padding: 5px 8px;
}
}
