/* Nav-bar highlighting */
#nav-friendly{
    text-underline-offset: 8px !important;
    text-decoration-thickness: 2px !important;
    color: var(--accent-color);
}

.section-container-friendly{
    display:none;
}

a:hover{
    text-decoration: none !important;
}

.friendly-container-intro span{
    word-break: break-all;
}

.main-container{
    min-height: 350px;
}

.description{
    text-align: center;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-top:15px;
    margin-bottom: -5px;
}

.friendly-container-intro{
    width: 35%;
    padding:50px;
    margin-top: 19px;
    border-radius: 5px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, var(--primary-color), var(--background-color), var(--secondary-color));
    background-size: 300% 300%;
    animation: gradientShift 5s ease infinite;
}

.friendly-container-intro h1{
    margin: 0;
}

.btn-url-copy{
    background-color: var(--secondary-color);
    border-radius: 5px;
    border: none;
    width: 40px;
    height: 40px;
    text-align: center;
}

.btn-url-copy:hover{
    background-color:var(--accent-color);
    cursor: pointer;
}

.btn-url-join, .btn-url-leave{
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: none;
    text-align: center;
}

.btn-url-join{
    background-color: #4cb335;
}

.btn-url-join:hover{
    background-color:#56ca3c;
    cursor: pointer;
}

.btn-url-leave{
    background-color: #b33535;
}

.btn-url-leave:hover{
    background-color:#cd3d3d;
    cursor: pointer;
}

/* Cleaned - 07/08/2023 */
