/**
 * My Account Page Styles
 */

.hc-wcma-address-carousel {
    position: relative;
    margin-bottom: 2em;
}

.hc-wcma-address-card {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    background: #f9f9f9;
    padding-left: 50px;
}

.hc-wcma-address-card h3 {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hc-wcma-default-badge {
    background-color: #007cba;
    color: white;
    padding: 4px 8px;
    font-size: 0.8em;
    border-radius: 3px;
}

.hc-wcma-actions {
    margin-top: 10px;
    border-top: 1px dashed #eee;
    padding-top: 10px;
}

.hc-wcma-actions .button {
    margin-right: 5px;
    margin-bottom: 5px;
}

.hc-wcma-address-carousel {
    position: relative; /* Needed for absolute positioning of nav buttons */
    padding-bottom: 40px; /* Space for pagination */
    margin-bottom: 20px;
    overflow: hidden; /* Recommended by Swiper */
}

/* Fallback for when Swiper is not loaded */
.no-swiper-fallback .swiper-wrapper {
    display: block;
}

.no-swiper-fallback .swiper-slide {
    margin-bottom: 1em;
}

/* New List View Styles */
.hc-wcma-address-list {
    /* Removed grid properties for single column display */
    margin-bottom: 2em;
}

.hc-wcma-address-list .hc-wcma-address-card {
    margin-bottom: 1.5em; /* Spacing between cards in list view */
}

/* Edit Modal Styles */
#hc_wcma_edit_modal_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100000;
}

#hc_wcma_edit_modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px 30px;
    border-radius: 5px;
    z-index: 100001;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

#hc_wcma_edit_modal_close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

#hc_wcma_edit_form_feedback {
    margin-top: 1em;
}