.sky-order-box {
    max-height: 470px;
    overflow: auto;
}

.sky-order-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
}

.sky-order-box strong {
    font-weight: 600;
}

.sky-order-box p {
    margin: 0;
}

.sky-order-box p:not(.time) {
    color: black;
}

.sky-order-box ul li {
    margin-bottom: 15px;
    padding-bottom: 15px; /* Fixed typo here */
    border-bottom: 1px solid #ededed;
}

.sky-order-box ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.order-quick-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7); /* Dim background */
    z-index: 9999;
    color: #242424;
    display: none;
}

.order-quick-modal .quick-modal-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


.order-quick-modal .quick-modal-body {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-quick-modal .quick-modal-content {
    background: #fff;
    padding: 30px;
    width: 400px;
    max-width: calc(100vw - 30px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    border-radius: 12px;
    z-index: 9;
}

.order-quick-modal .modal-close {
    position: absolute;
    top: -40px;
    inset-inline-end: -15px;
    z-index: 1104;
    padding: 0;
    width: 30px;
    height: 30px;
    background: red;
    color: #fff;
    font-weight: 900;
    font-size: 20px;
    cursor: pointer;
    display: block;
    text-align: center;
    right: 0px;
    border-radius: 99px;
    line-height: 1em;
    min-height: inherit;
}

.order-quick-modal .tab-contents .sky-order-box {
    max-height: 50vh;
    height: 385px;
}

.order-quick-modal .tab-contents .sky-order-box ul {
    padding-top: 20px;
}

.order-quick-modal .tab-contents  .tab-content {
    display: none;
}

.order-quick-modal .tab-contents  .tab-content.see-top-content .woocommerce-orders {
    display: flex;
    flex-direction: column-reverse;
}

.woocommerce-orders li {
    width: 100%;
}



.recent-donation-list {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.recent-donation-list .line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #ededed;
    z-index: -1;
}

.recent-donation-list .woocommerce-orders {
    list-style: none;
    margin: 0px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

.recent-donation-list .woocommerce-orders li.woocommerce-order {
    margin: 0;
    position: relative;
    color: black;
    font-size: 16px;
}

.recent-donation-list .woocommerce-orders li.woocommerce-order .list-icon {
    float: left;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    background: #f4f3e9;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: black;
}

.recent-donation-list .woocommerce-orders li.woocommerce-order .list-icon svg {
    max-width: 20px;
    max-height: 20px;
}

.recent-donation-list .woocommerce-orders li.woocommerce-order .donar-name {
    margin-bottom: 6px;
    font-size: 16px;
}

.recent-donation-list .woocommerce-orders li.woocommerce-order .donate-price strong {
    font-weight: 700;
}

.recent-donation-list .woocommerce-orders li.woocommerce-order .donate-price small {
    font-size: 40%;
    display: inline-block;
    margin: 5px 10px;
}

.recent-donation-list .woocommerce-orders li.woocommerce-order .donate-price {
    display: flex;
    align-items: center;
}

.primary-button.loading {
    position: relative;
}

.primary-button.loading:before {
    content: "";
    position: absolute;
    right: 2px;
    top: calc(50% - 0px);
    width: 10px;
    height: 10px;
    border: 2px solid currentColor;
    border-radius: 50%;
    border-right-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}