.erp-data-container {
    /* display: none; */
    display: flex;
    gap: 40px;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 99999;
    background: #00B6E6;
    padding: 10px;
}
.erp-data-container svg{
    width: 120px;
    height: auto;
    padding-left: 30px;
}
.erp-data-modal,
.search-results-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}
.erp-data-modal-content,
.search-results-modal-content {
    background-color: #fefefe;
    margin: 4% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}
.close,
.close-search {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus,
.close-search:hover,
.close-search:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.erp-data-attributes .attribute {
    border-bottom: 1px solid #858282;
    padding: 5px;
}
.erp-data-search-container {
    display: flex;
    gap: 10px;
    align-items: center;
}
input#attributeSearch {
    height: 40px;
    padding-left: 10px;
    text-transform: none;
}
.search-container {
    position: relative;
    display: inline-block;
}
#attributeSearch {
    padding-right: 30px;
}
.clear-search {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    font-size: 14px;
    cursor: pointer;
}
.erp-data-search-input {
    position: relative;
}
button#erpDataButton:hover,
button#searchButton:hover {
    background: #fff;
    color: #00b6e6;
}
/* Modal Styling */
.custom-swal-popup {
    font-size: 1em;
    padding: 30px;
    max-height: 90vh;
    overflow-y: auto;
    line-height: 1.6;
}

/* Title Styling */
.custom-swal-title {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

/* Content Styling */
.custom-swal-content {
    text-align: left;
    font-family: 'Arial', sans-serif;
    font-size: 1.1em;
    color: #333;
}

/* Attribute Container Styling */
.erp-data-attributes .attribute {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

.erp-data-attributes .attribute strong {
    font-size: 1.2em;
    font-weight: bold;
    color: #0073e6;
}

.erp-data-attributes .attribute div {
    margin-top: 5px;
    font-size: 1em;
    color: #555;
}

/* Button Styling */
.custom-swal-button {
    background-color: #0073e6;
    color: #fff;
    font-size: 1.2em;
    padding: 10px 20px;
    border-radius: 5px;
}

.custom-swal-button:hover {
    background-color: #005bb5;
    color: #e0e0e0;
}

