/* styles.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.address-form,
.address-table {
    width: 100%;
    margin-top: 20px;
}

.address-form label,
.address-form input,
.address-form select,
.address-form button {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 1rem;
}

.address-form input,
.address-form select {
    padding: 10px;
    font-size: 1rem;
}

.address-form button {
    background-color: #28a745;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 5px;
}

.address-form button:hover {
    background-color: #218838;
}

.address-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.address-table th,
.address-table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

.address-table th {
    background-color: #f8f9fa;
}

.address-table td a {
    color: #007bff;
    text-decoration: none;
}

.address-table td a:hover {
    text-decoration: underline;
}

.add-btn,
.back-btn {
    display: inline-block;
    margin-top: 20px;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

.add-btn:hover,
.back-btn:hover {
    background-color: #0056b3;
}
