/* Összefoglaló Rendelési Adatok */
.my-order-summary {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.my-order-summary-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
}

.summary-label {
    font-weight: bold;
    margin-right: 5px; /* Csökkentett távolság */
    white-space: nowrap;
}

.summary-content {
    /* Törölve a távolságot */
}

/* Számlázási és Szállítási Adatok Dobozok */
.my-order-details-container {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.my-order-details-box {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 15px; /* Csökkentett padding a kisebb sorköz érdekében */
    box-sizing: border-box;
    background-color: #f9f9f9;
}

.my-order-details-box h3 {
    font-size: 16px;
    margin-bottom: 15px; /* Csökkentett margin */
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px; /* Csökkentett padding */
}

.details-row {
    display: flex;
    margin-bottom: 5px; /* Csökkentett margin */
}

.details-label {
    width: 150px;
    font-weight: bold;
    margin-right: 10px;
}

.details-content {
    flex: 1;
    text-align: left;
}

/* Tételek Elrendezése */
.my-order-items-container {
    width: 100%;
    margin-bottom: 20px;
}

.my-order-items-header, .my-order-item {
    display: flex;
    width: 100%;
}

.my-order-items-header {
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.my-order-item {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    align-items: center;
}

.my-order-item-col {
    padding: 0 10px;
}

.item-name {
    flex: 0 0 50%;
}

.item-quantity {
    flex: 0 0 10%;
    text-align: center;
}

.item-unit-price,
.item-subtotal {
    flex: 0 0 20%;
    text-align: right;
}

/* Végösszeg és Összesítők */
.my-order-totals {
    text-align: right;
}

.my-order-total,
.my-order-subtotal {
    margin: 5px 0;
    font-weight: bold;
}

.my-order-details-title {
    font-size: 16px;
    font-weight: bold;
}
