.order-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.order-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-color: #dee2e6;
}

.order-code strong {
    color: #212529;
    font-size: 0.9375rem;
}

.order-product-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 0.375rem;
    border: 1px solid #e9ecef;
}

.order-product-more {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 0.375rem;
    border: 1px solid #e9ecef;
    font-size: 0.875rem;
}

.order-actions .btn:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
    color: #fff;
}

.order-filter-btn {
    background-color: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.order-filter-btn:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
    color: #495057;
}

.order-filter-btn.active {
    background-color: #FF6B36;
    color: #fff;
    border-color: #FF6B36;
}

.order-filter-btn.active:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
    color: #fff;
}


.my-address-wrapper {
    display: block;
    width: 100%;
    position: relative;
    border-radius: 0.25rem;
    border: 2px solid #dedede;
    background-color: #fcfcfc;
    font-size: 0.8rem;
    color: #333333;
    transition: 0.4s;
}

.my-address-wrapper:hover {
    background-color: #efefef;
    transition: 0.4s;
}

.my-address-wrapper a{
    position: absolute;
    left: 0.4rem;
    top: 0.4rem;
    text-decoration: none;
    font-size: 0.7rem;
    margin: 0.2rem;
    /*color: #00b5fe;*/
    color: #999999;
    background-color: inherit;
    transition: 0.4s;
}

.my-address-wrapper:hover a{
    color: #00b3c3;
    transition: 0.4s;
}


.field-title {
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 1.6rem;
}

.field-value {
    font-size: 0.9rem;
    line-height: 1.6rem;

}