 /* Basic styling for the popup */
 .popup-container {
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*overflow-y: auto;*/
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}
.popup {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers content horizontally */
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    width: 300px;
    text-align: center;
}

.popup img {
    max-width: 100px;
    margin-bottom: 10px;
}
.popup input {
    width: calc(100% - 20px);
    padding: 8px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.popup button {
    padding: 8px 15px;
    color: white;
    background-color: #329cd5;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px; /* Adds space between buttons */
}
.popup button:hover {
    background-color: #329cd5;
}

.popup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding:30px;
}

.popup-config-script {
    display: block;
    align-items: center; /* Centers content horizontally */
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    width: 75%;
    max-height: 100%;
    text-align: center;
    overflow-y: auto;
    overflow-x: hidden;
}

.popup-config-script button {
    padding: 8px 15px;
    color: white;
    background-color: #329cd5;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px; /* Adds space between buttons */
}

.popup-config-script button:hover {
    background-color: #329cd5;
}

.popup-add-step-to-script {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers content horizontally */
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    /*width: 470px;*/
    text-align: center;
}

.popup-add-step-to-script button {
    padding: 8px 15px;
    color: white;
    background-color: #329cd5;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px; /* Adds space between buttons */
}
.popup-add-step-to-script button:hover {
    background-color: #329cd5;
}
.divscripttile {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}
