@CHARSET "UTF-8";
.apoyl_copy_form-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 500px;
    padding: 15px 0 10px 0;
    margin: 0 auto;

}
.apoyl_copy_nice-input {
    margin-right: 5px;
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}
.apoyl_copy_nice-button {
    padding: 12px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.apoyl_copy_nice-input:focus {
    outline: none;
    border-color: #4CAF50;
}
.apoyl_copy_nice-button:hover {
    background-color: #45a049;
}