.border-bottom-grey{
    border-bottom: 1px solid grey;
}
.pb-5{
    padding-bottom: 50px;
}
.mb-2{
    margin-bottom: 20px;
}
.mb-1{
    margin-bottom: 10px;
}
.mt-1{
    margin-top: 10px;
}
.mt-2{
    margin-top: 20px;
}
.m-0{
    margin: 0;
}
.mt-0{
    margin-top: 0;
}
p{
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 12px;
}

.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;

}

.switch input { 
opacity: 0;
width: 0;
height: 0;
}

.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}

.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}

input:checked + .slider {
background-color: #2196F3;
}

input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
border-radius: 34px;
}

.slider.round:before {
border-radius: 50%;
}

/* Style the tab container */
#custom-tabs {
margin-top: 20px;
}

/* Style the tab buttons */
.tabs {
list-style: none;
padding: 0;
display: flex;
}

.tabs li {
margin-right: 10px;
}

.tabs a {
text-decoration: none;
padding: 10px 20px;
background-color: #0073e6;
color: #fff;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
transition: background-color 0.3s;
}

/* Style the active tab button */
.tabs li.active a {
background-color: #0056b3;
}

/* Style the tab content */
#tab-1,
#tab-2 {
display: none;
padding: 20px;
background-color: #f5f5f5;
border: 1px solid #ddd;
border-radius: 5px;
}

/* Style the active tab content */
#tab-1.active,
#tab-2.active {
display: block;
}

/* Style the submit buttons */
.form-submit-button {
background-color: #0073e6;
color: #fff;
border: none;
border-radius: 5px;
padding: 10px 20px;
cursor: pointer;
transition: background-color 0.3s;
}

/* Style the submit button on hover */
.form-submit-button:hover {
background-color: #0056b3;
}


.insert-variable {
    display: inline-block;
    margin-right: 10px; /* Adjust as needed for spacing between buttons */
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f0f0f0;
    cursor: pointer;
    margin-top: 10px;
}

.insert-variable:hover {
    background-color: white;
}