/* Store Branches Styles */
.wcfm-store-branches-table {
    margin-bottom: 10px;
    background: #f6f6f6;
    overflow: hidden;
    padding: 0 10px;
    border-bottom: 2px solid #ededed;
}

/* Hide original location fields that might be present in some themes */
.wcfmmp-store-search-form .wcfm-form-field.wcfm_location_state,
#wcfmmp_store_state {
    display: none !important;
}

.wcfm-store-branches-table table {
    width: 100%;
    border-collapse: collapse;
}

.wcfm-store-branches-table th,
.wcfm-store-branches-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.wcfm-store-branches-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.wcfm-store-branches-form {
    margin-top: 0;
    background: #f6f6f6;
    padding: 10px;
    font-size: 16px;
}

.wcfm-store-branches-form .wcfm_input_form {
    margin-bottom: 15px;
}

.wcfm-store-branches-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    width: 150px !important;
}

.wcfm-store-branches-form input[type="text"],
.wcfm-store-branches-form select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.wcfm-store-branches-form .error {
    border: 2px solid red !important;
}

.wcfm-store-branches-form .wcfm_submit_button {
    margin-right: 10px;
}

.wcfm-action-icon {
    margin-right: 5px;
    text-decoration: none;
}

.wcfm-action-icon .wcfmfa {
    font-size: 16px;
}

.wcfm-action-icon.edit-branch {
    color: #007bff;
}

.wcfm-action-icon.delete-branch {
    color: #dc3545;
}

/* Responsive Adjustments */
@media screen and (max-width: 600px) {
    .wcfm-store-branches-table table,
    .wcfm-store-branches-table thead,
    .wcfm-store-branches-table tbody,
    .wcfm-store-branches-table th,
    .wcfm-store-branches-table td,
    .wcfm-store-branches-table tr {
        display: block;
    }
    
    .wcfm-store-branches-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .wcfm-store-branches-table tr {
        border: 1px solid #ccc;
        margin-bottom: 10px;
    }
    
    .wcfm-store-branches-table td {
        border: none;
        position: relative;
        padding-left: 50%;
    }
    
    .wcfm-store-branches-table td:before {
        position: absolute;
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        content: attr(data-label);
        color: #000;
        font-weight: bold;
    }
}