/* supplierAddressDialog.css */

#addressDialog {
    padding: 10px;
}

#addressList {
    margin-top: 10px;
    max-height: 300px;
    overflow-y: auto;
}

.address-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 6px;
    border-bottom: 1px solid #ddd;
}

.address-block {
    flex: 1;
    line-height: 1.4;
    margin-right: 10px;
}

.address-actions {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.address-row button {
    padding: 4px 8px;
    font-size: 12px;
}

#newAddressBtn {
    margin-top: 10px;
    float: right;
}

form#addressForm {
    display: flex;
    flex-direction: column;
}

form#addressForm label {
    font-weight: bold;
    margin-top: 8px;
}

form#addressForm input {
    padding: 5px;
    margin-top: 2px;
    font-size: 14px;
}