﻿/* General Styles */
.address-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.address-details {
    flex: 1;
}

.address-type {
    color: #2874f0;
    font-size: 16px;
    margin-bottom: 10px;
}

.address-details p {
    margin: 5px 0;
    font-size: 14px;
    color: #212121;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #757575;
    padding: 5px 10px;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 120px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
}

    .dropdown-content a {
        color: #212121;
        padding: 8px 12px;
        text-decoration: none;
        display: block;
        font-size: 14px;
    }

        .dropdown-content a:hover {
            background-color: #f5f5f5;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hover effect for the address card */
.address-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}
