/* Container */
.address-book {
    /* max-width: 800px; */
    width: 90%;
    margin: 0 auto;
    background: #fff;
    height: 410px;
    overflow: auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Table Title */
.table-title {
    text-align: center;
    margin-bottom: 15px;
}

/* Table Styling */
.address-table {
    width: 100%;
    border-collapse: collapse;
}

.table-header {
    background-color: #ff9b00;
    color: #fff;
}

.table-row {
    text-align: left;
}

.table-header th {
    padding: 10px;
    text-align: left;
}

.table-row td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

/* Column Styling */
.column-address,
.column-region,
.column-status,
.column-action {
    padding: 8px;
}

/* Status Styling */
.status-active {
    color: green;
    font-weight: bold;
}

.status-inactive {
    color: red;
    font-weight: bold;
}

/* Buttons */
.btn-edit {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 5px 10px;
    margin-right: 5px;
    cursor: pointer;
    border-radius: 5px;
}

.btn-delete {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

.btn-edit:hover {
    background-color: #218838;
}

.btn-delete:hover {
    background-color: #c82333;
}