:root{
    --blue: #0d6efd;
    --light-grey: #F1F2F9;
    --grey: #9A9BAE
}

body{
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    background-color: var(--light-grey) !important;
}

.container{
    max-width: 1200px;
    padding: 0 50px;
    margin: 0 auto;
}

.button,
.btn{
    background-color: transparent;
    border: none;
    color: var(--blue);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border: 2px solid var(--blue);
    border-radius: 4px;
    font-weight: bold;
}

.button:hover{
    background-color: var(--blue);
    color: #FFF;
}

input, select{
    background-color: #FFF;
    border: 1px solid var(--grey);
    padding: 20px 12px;
    border-radius: 4px;
    width: 100%;
    margin: 4px 2px;
    font-size: 16px;
}

input:focus-visible,
select:focus-visible,
input[type="file"]:focus-visible{
    outline-color: black;
}

.message {
    display: none;
    border: none;
    color: white;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    border-radius: 4px;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 999;
}

.folders{
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    position: relative;
}
.folders>div,
.folders>div>select,
.folders>div>input{
    width: 100%;
    box-sizing: border-box;
}

input[type="file"],.iframe-wrapper {
    /* width: 75%; */
    /* margin: 0 20%; */
    background-color: #eeeeee; /* Green */
    border: none;
    /* color: white; */
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    border-radius: 4px;
    cursor: text;
    border-style: dashed;
    border-color: #c0c0c0;
    box-sizing: border-box;

}

form{
    display: flex;
    flex-direction: column;
}

.iframe, .view-iframe{
    width: 100%;
    text-align: left;
    height: 100px;
}

h2{
    margin-top: 5%;
    display: inline-block;
}

.iframe-wrapper{
    position: relative;
    width: 100%;
}
.view-iframe{
    width: 100%;
}
.iframe-options{
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px;
}

.iframe-options > button{
    border: none;
    background: white;
    border-radius: 4px;
    aspect-ratio: 1/1;

}

.copy:hover,
.preview:hover{
    cursor: pointer;
    opacity: 0.5;
}

.modal-dialog{
    width: unset !important;
    max-width: 1200px !important;
}

/* Style for the tooltip */
.fa-tooltip {
    position: absolute;
    display: inline-block;
    cursor: pointer;
    top: 25%;
    transform: translateX(10px);
}

/* Style for the tooltip text */
.fa-tooltip .tooltiptext {
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    border-radius: 3px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    /* bottom: 125%;
    left: 50%;
    transform: translateX(-50%); */
    white-space: nowrap;
}

/* Show the tooltip text when hovering over the icon */
.fa-tooltip:hover .tooltiptext {
    visibility: visible;
}

.form-wrapper{
    position: relative;
}

.form-wrapper:not(:nth-child(2)){
    padding-top: 7.5%;
}

.form-wrapper:nth-child(6){
    padding-bottom: 7.5%;
}

h1{
    font-weight: bold !important;
    /* text-transform: uppercase; */
    margin: 50px auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px !important;
}

#deleteProject > .input-wrapper > div{
    display: flex;
    justify-content: space-between;
    gap: 20px
}

#deleteProject > .input-wrapper > div:nth-child(1){
    width: 100%;
}