.address-page{

    padding:40px 20px;

    background:#f5f5f5;

    min-height:100vh;
}

.address-container{

    max-width:1200px;

    margin:auto;
}

.address-header{

    margin-bottom:30px;
}

.address-header h2{

    font-size:32px;

    font-weight:700;
}

.address-form-card{

    background:white;

    padding:30px;

    border-radius:20px;

    margin-bottom:30px;
}

.address-form-card form{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.grid-2{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;
}

.grid-3{

    display:grid;

    grid-template-columns:1fr 1fr 1fr;

    gap:20px;
}

input{

    height:50px;

    border:1px solid #ddd;

    border-radius:12px;

    padding:0 15px;

    font-size:15px;
}

button{

    height:50px;

    border:none;

    border-radius:12px;

    background:black;

    color:white;

    font-weight:600;
}

.address-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:20px;
}

.address-card{

    background:white;

    padding:25px;

    border-radius:18px;
}

.address-type{

    background:black;

    color:white;

    padding:5px 12px;

    border-radius:30px;

    font-size:12px;
}

.delete-btn{

    display:inline-block;

    margin-top:15px;

    color:red;

    text-decoration:none;

    font-weight:600;
}