.kubo-orders-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.kubo-order-card {
    display: flex;
    justify-content: space-between;
    border: 2px solid #888;
    padding: 24px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin-bottom: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.kubo-order-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 75%;
}

.kubo-order-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 25%;
    justify-content: space-between;
}

.kubo-order-id {
    font-weight: 700;
}

.kubo-order-status {
    font-weight: 700;
}

.kubo-order-images {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: calc(100% - 32px);
    margin-right: 32px;
    align-items: center;
    flex-wrap: nowrap;
}

.kubo-order-image {
    display: none;
    width: 100px;
    height: 100px;
    border-radius: 6px;
    flex: 0 0 100px;
    overflow: hidden;
    text-decoration: none;
}

.kubo-order-image.visible {
    display: block;
}

.kubo-order-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.kubo-order-image-more {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    max-height: 100px;
    background: #eaeaea;
    border-radius: 6px;
    font-weight: 700;
    flex: 0 0 100px;
    font-size: 1.25rem;
}

.kubo-order-details-container {
    margin-top: auto;
    padding-top: 16px;
}

.kubo-order-details {
    display: inline-block;
    padding: 8px 24px;
    background: #FAB000;
    color: white;
    text-decoration: none !important;
    border-radius: 4px;
    font-weight: 700;
    transition: background 0.3s ease;
    width: 100%;
    text-align: center;
}

.kubo-order-details:hover {
    background: white;
    color: #FAB000;
    border: 2px solid #FAB000;
}

.kubo-load-more-container {
    text-align: center;
    margin-top: 20px;
}

.kubo-load-more {
    padding: 8px 24px;
    background: #FAB000;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    transition: background 0.2s ease;
    text-decoration: none !important;
}

.kubo-load-more:hover {
    background: white;
    color: #FAB000;
    border: 2px solid #FAB000;
}

