html {
    font-family: Arial;
    margin: 0;
    padding: 0;
    color: white;
}

a {
    color: white;
}

a:hover {
    color: white;
}

html, body {
    height: 100%;
}

#site-content {
    flex: 1 0 auto;
}

body {
    padding: 0;
    margin: 0;
    background-image: url("images/background-hus-site.png");
    background-attachment: fixed;
    background-size: cover;

    display: flex;
    flex-direction: column;
    
}


#footer {
    background-color: #0f0f0f;
    padding: 25px;
    margin: 0;

    border-top: 2px solid white;
    outline: 2px solid white;
    outline-offset: 2px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;

}

#footer-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 1px;;
    border-top: 2px solid white;
    outline: 2px solid white;
    outline-offset: 2px;

    background-color: black;;

}


#footer .footer-part {
    display: flex;
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    margin: 15px;
    padding: 4px;
}

#header {
    position:fixed;
    left: 0;
    right: 0;
    z-index: 30;
    
    background-color: #0f0f0f;
    padding: 25px;
    margin: 0;

    border-bottom: 2px solid white;
    outline: 2px solid white;
    outline-offset: 2px;

    display: flex;
    justify-content: space-between;
    align-items: center;

}

#header .header-left {
    margin: 0;
    display: flex;
}
#header .header-right {
    margin: 0;
    display: flex;
    align-items: center;
}
#header .header-middle {
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

#header .header-middle img {
    transition: 0.15s linear;
}

#header .header-middle img:hover {
    transform: scale(1.15);
}


input[type=submit],
.base-button {

    font-size: 15px;

    text-decoration: none;
    border: 2px solid white;
    outline: 2px solid white;
    outline-offset: 5px;
    border-radius: 8px;

    margin: 15px;
    padding-top: 4px;
    padding-bottom: 3px;
    padding-right: 10px;
    padding-left: 10px;

    text-transform: uppercase;
    font-weight: 600;

    letter-spacing: 0;

    transition: .1s ease-in-out;

}

input[type=submit]:hover,
.selected-button,
.base-button:hover {
    background-color: white;
    color: #0f0f0f;
}

.profile-fields input {
    width: 220px;
    margin-left: 0;
}

.simple-content-box
{
    background-color: rgba(15, 15, 15, .75);
    border: 2px solid white;
    outline: 2px solid white;
    outline-offset: 2px;
    border-radius: 15px;
    
    margin:auto;

    width: 600px;

    padding: 30px;

}

#wikieditionbar
{
    z-index: 20;
    position: fixed;
    top: 20%;
    left: 2%;
    gap: 30px;
    display: flex;
}

.support-content
{
    background-color: rgba(15, 15, 15, .75);
    border: 2px solid white;
    outline: 2px solid white;
    outline-offset: 2px;
    border-radius: 15px;
    
    margin:auto;

    width: 600px;

    padding: 30px;


    margin-top: auto;
    margin-bottom: auto;
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}

.simple-content-box p,
.support-content p {
    width: 85%;
    padding: 30px;
    text-align: justify;
    margin:auto;
    font-size: 14px;
    font-weight: lighter;
    letter-spacing: 1px;
}

.simple-content-box h1,
.support-content h1
{
    padding: 10px;
    padding-bottom: 8px;
    color: #0f0f0f;
    background-color:white;
    width: 130px;
    text-align: center;
    border-radius: 15px;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 100;
    margin: auto;
}


.homepage-content
{
    background-color: rgba(15, 15, 15, .75);
    border: 2px solid white;
    outline: 2px solid white;
    outline-offset: 2px;
    border-left: none;
    border-right: none;
    
    padding: 30px;

    display: flex;
    justify-content: space-between;
    align-items: top;

    margin-top: auto;
    margin-bottom: auto;
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    
  
}


.homepage-content .part {
    padding: 10px;
    vertical-align: top;
    width: 30%;
    font-size: 15px;
    line-height: 25px;
    text-align: justify;
    letter-spacing: 5%;
}

.homepage-content .part-separator {
    border: 2px solid white;
    border-radius: 5px;
    padding: 1px;
    height: inherit;
}

.profile-picture-uploader-container {

    width: 100px;
    height: 100px;
    border: 2px white solid;
    background-color: white;
    border-radius: 15px;
    transition: 1s ease-in-out;
    padding:0;
    position: relative;
    overflow: hidden;
    

}

.profile-picture-uploader-container img {
    position:absolute;
    width: 50px;
    height: 50px;
    top: 25%;
    right: 25%;
    opacity: 0;
    pointer-events:none;
    transition: 0.3s ease-in-out;


}

.profile-picture-uploader-container:hover img {
    opacity: 1;
}



.profile-picture-uploader-image {

    width: 100px;
    height: 100px;
    background-size: cover;
    clip: auto;
    transition: 0.3s ease-in-out;


}

.profile-picture-uploader-image:hover {
    opacity: 0;
}



.horizontal-center-flex
{
    display: flex;
    justify-content: space-around;
    align-items: center;

}

.social-media-button
{

}

.social-media-button img {
    filter: invert(1);
}


.login-content input
{
    width: 320px;
}

.login-content
{
    background-color: rgba(15, 15, 15, .75);
    border: 2px solid white;
    outline: 2px solid white;
    outline-offset: 2px;
    border-radius: 15px;
    
    margin:auto;

    width: 350px;

    padding: 30px;


    margin-top: auto;
    margin-bottom: auto;
    margin: 0;
}

.white-squared-title
{
    padding: 3px;
    color: #0f0f0f;
    background-color:white;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    margin: auto;
    margin-bottom: 20px;;
}

.white-rounded-title
{
    padding: 10px;
    padding-bottom: 8px;
    color: #0f0f0f;
    background-color:white;
    width: 130px;
    text-align: center;
    border-radius: 15px;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 100;
    margin: auto;
}

.white-squared-label
{
    padding: 10px;
    padding-top: 5px;
    padding-bottom: 4px;
    color: #0f0f0f;
    background-color:white;
    font-weight: 600;
    margin-bottom: 20px;
}

select {
    color-scheme: dark;
    background-color: #0f0f0f;

    margin-top: 10px;
    color: white;
    font-size: 13px;
    border: 2px solid white;
    outline: none; /* Désactive le contour du focus */
}

input {
    margin-top: 10px;
    color: white;
    font-size: 13px;
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid white;
    outline: none; /* Désactive le contour du focus */
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input[type=date]
{
    color-scheme: dark;
    font-family: Arial;
}

.staff-buttons-container 
{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-content: center;

    gap: 30px;
    justify-content: center;
    align-items: center;

}

.little-staff-icon
{
    width: 60px;
}

.staff-icon {
    width: 150px;
    border: 2px solid white;
    outline: 2px solid white;
    outline-offset: 2px;
    border-radius: 15px;
    transition: 0.15s ease-in-out;

}

.staff-icon:hover {
    background-color: white;
}

.staff-icon:hover img {

    filter: invert(1);
}

.staff-icon img {
    width: 100px;
    height: 100px;
    padding: 10px;
}

.staff-icon p {
    width: 100%;
    margin: 0;
    text-align: center;
    background-color: white;
    color: black;
    border-bottom-left-radius: 12px;;
    border-bottom-right-radius: 12px;;
    padding-top: 5px;
    padding-bottom: 5px;
}






.little-staff-icon {
    width: 75px;
    border: 2px solid white;
    outline: 2px solid white;
    outline-offset: 2px;
    border-radius: 15px;
    transition: 0.15s ease-in-out;

}

.little-staff-icon:hover {
    background-color: white;
}

.little-staff-icon:hover img {

    filter: invert(1);
}

.little-staff-icon img {
    width: 55px;
    height: 55px;
    padding: 5px;
}

.little-staff-icon p {
    width: 100%;
    margin: 0;
    text-align: center;
    background-color: white;
    color: black;
    border-bottom-left-radius: 12px;;
    border-bottom-right-radius: 12px;;
    padding-top: 5px;
    padding-bottom: 5px;
}

.disconnect {
    opacity: 80%;
    margin-left: 5px;
    margin-right: 8px;
}

.profile-button {
    border: 2px white solid;
    border-radius: 12px;
    background-color: white;
    margin: 3px;
    margin-left: 9px;
}

.simple-centered-page {
    width: 650px;
    padding: 30px;
    text-align: justify;
    margin:auto;
    font-size: 14px;
    font-weight: lighter;
    letter-spacing: 1px;
    margin: auto;

    background-color: rgba(15, 15, 15, .75);
    border: 2px solid white;
    outline: 2px solid white;
    outline-offset: 2px;

    border-top: none;
    border-bottom: none;
    
    
}

.profile-img {
    border-radius: 12px;
    border: 2px white solid;
    background-color: white;;
}


.gender-select-icon {
    width: 16px;
    filter: invert(1);
    padding: 3px;
    margin: 3px;
    border-radius: 5px;
    transition: 0.2s ease-in-out;
    border: 2px solid black;
}

.gender-select-icon:hover,
.gender-selected {
    filter: invert(0);
    background-color: white;
    border: 2px solid white;
}


.horizontal-separator
{
    border: 2px solid white;
    border-radius: 5px;
    padding: 1px;
    margin: auto;
}
 
.centered-paragraph {
    text-align: center;
}


/*the container must be positioned relative:*/
.autocomplete {
    position: relative;
    display: inline-block;
  }
  
 
  
  .autocomplete-items {
    position: absolute;
    border: 2px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
  }
  
  .autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #0f0f0f; 
    border-bottom: 1px solid #d4d4d4; 
  }
  
  /*when hovering an item:*/
  .autocomplete-items div:hover {
    background-color: #e9e9e9;
    color: #0f0f0f;
  }
  
  /*when navigating through the items using the arrow keys:*/
  .autocomplete-active {
    background-color: DodgerBlue !important; 
    color: #ffffff; 
  }

  table
  {
    margin: 0; 
  }


  td {
    padding: 5px;
    border-bottom: 2px white solid;
    margin: 0;
  }

