.login-box,
.register-box {
    margin-top: 150px;;
    width: 450px;
    height: 80vh;
}

.logo {
    width: 250px;
    margin: auto;
}

.logo-image {
    line-height: 0.8;
    margin-left: 0.1rem;
    margin-right: 0.5rem;
    margin-top: -3px;
    width: 200px;
}

.profile-img {
    border: 3px solid #adb5bd;
    margin: 0 auto;
    padding: 3px;
    width: 215px;
}
.dataTables_wrapper .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dataTables_wrapper .dataTables_length {
    order: 2; /* Move to the right */
}

.dataTables_wrapper .dt-buttons {
    order: 1; /* Move to the left */
}

.agree-error {
    font-weight: 500;
}

.flex-container {
    display: flex;
    gap: 1rem;
}

.disabled-button {
    background-color: #6c757d;
}

.custom-checkbox {
    width: 15px;
    height: 15px;
}

.main-logo {
    height: 60px;
}

.original-price {
    color: #a4a4a4;
    font-size: 13px;
    margin-top: 9px;
    text-transform: capitalize;
    text-decoration: line-through;
    transition: all 0.3s ease-in-out;
}

.original-price-2 {
    font-weight: 400;
    font-size: 21px;
    line-height: 24px;
    color: #a4a4a4;
    margin-left: 5px;
    text-decoration: line-through;
}

.ratings-text {
    color: #a4a4a4;
    font-size: 11px;
    margin-top: 9px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.product-variants {
    display: flex;
    gap: 20px;
}

.product-variants-size label {
    display: block;
    margin-bottom: 5px;
}

.nice-select {
    width: 100% !important;
    box-sizing: border-box;
}

.mb-50 {
    margin-bottom: 50px;
}

.product_review-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product_review-2 a {
    text-decoration: none;
    color: inherit;
}

.s-dark {
    color: #5f5d5d;
    font-weight: 600;
}

#alert-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* Ensure it appears above other elements */
    text-align: center;
}

.category-menu-list ul li a i.fa {
    font-size: 15px;
    margin-right: 12px;
}

.category-menu-list ul li.active {
    border-top: 3px solid #fed700;
    background-color: #d4d4d6;
    font-weight: bold;
}

.category-menu-list ul li a {
    color: #000;
    text-decoration: none;
}

.category-menu-list ul {
    list-style-type: none;
    padding-left: 0;
}

.card-container {
    position: relative;
}
.card-header-bottom {
    bottom: 0;
    width: 100%;
    padding: 0.5rem 1rem;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-container p {
    margin-bottom: 0.1rem;
}

.icon-lg {
    font-size: 1.5rem;
}

.orders-container {
    margin: auto;
    font-family: Arial, sans-serif;
}

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

.tab-item {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    color: #fed700;
    border-bottom: 2px solid transparent;
}

.tab-item.active {
    border-bottom: 2px solid #fed700;
}

.order-card {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
}

.order-image img {
    max-width: 100px;
    border-radius: 5px;
}

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

.order-details h4 {
    margin: 0;
    font-size: 16px;
}

.order-details p {
    margin: 5px 0;
    color: #555;
}

.order-status {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.status {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

.status.delivered {
    background-color: #4caf50;
}

.status.in-progress {
    background-color: #fed700;
}

.status.cancelled {
    background-color: #e92929;
}

.order-date {
    margin-left: 15px;
    font-size: 12px;
    color: #888;
}

.order-action {
    margin-left: 20px;
}

.see-details {
    background-color: #fed700;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.see-details:hover {
    background-color: #5f5d5d;
}

.complete-button-payment input {
    background: #e92929; /* Original background color */
    border: medium none;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    height: 50px;
    margin: 20px 0 0;
    padding: 0;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 100%;
    border: 1px solid transparent;
    cursor: pointer;
}

.complete-button-payment input:hover {
    background: #fed700;
}

/* Overlay styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay-content {
    text-align: center;
    color: white;
    background: #fed700;
    padding: 20px;
    border-radius: 8px;
}

.overlay-content img {
    width: 300px;
    margin-bottom: 20px;
}

.overlay-content p {
    color: white;
    font-weight: bold;
}
.overlay-content p {
    font-size: 18px;
    margin: 0;
}

.cursor-hover {
    cursor: pointer;
}

.cursor-hover:hover {
    color: #000;
}
