/* addresses.css */
.address-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.back-btn {
    color: #2d8cf0;
    text-decoration: none;
    font-size: 14px;
}

.address-list {
    margin-bottom: 30px;
}

.address-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: transform 0.2s;
}

.address-card:hover {
    transform: translateY(-2px);
}

.address-content {
    flex: 1;
    margin-right: 15px;
}

.address-info {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
}

.name {
    font-weight: 500;
    color: #333;
}

.phone {
    color: #666;
}

.address-detail {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.edit-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.edit-btn img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.edit-btn:hover img {
    opacity: 1;
}

.action-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
}

.btn.primary {
    background: #07c160;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
}
