

/* Main Address Manager Module */
#user-address-manager {
    max-width: 900px;
    margin: auto;
}

.manager-main-heading {
    font-weight: 500;
    color: #343a40 !important;
    margin-bottom: 1.5rem;
}

/* Grid for Address Entries */
.address-registry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.address-registry-grid-frontend {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Individual Address Entry Card */
.address-entry-card {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

/* Card Header Section */
.entry-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.entry-card__title {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 700;
    color: #6c757d;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.entry-card__favorite-icon {
    font-size: 1.5rem;
    color: #2000fd;
    cursor: pointer;
}

.entry-card__non-favorite-icon {
    font-size: 1.5rem;
    color: #adb5bd;
    cursor: pointer;
}

/* Card Body (Address Details) */
.entry-card__details {
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1; 
}

.entry-card__details p {
    margin: 0;
}

/* Modifier for placeholder text */
.entry-card__details--placeholder p {
    color: #6c757d;
}

/* Card Footer (Action Links) */
.entry-card__actions {
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.action-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.action-link:hover {
    text-decoration: underline;
}

/* Dotted Divider at the Bottom */
#manager-section-divider {
    border: 0;
    border-top: 2px solid #deddda;
    margin-top: 2rem;
}