body {
    height: 100%;
    width: 100%;
    /* background: url('../../static/img/bg.jpg') no-repeat center bottom fixed; */
    background-color: rgb(200, 200, 200);
    background-size: cover;
}

.main-menu {
    /* max-width: min-content; */
    width: min-content;
    margin: 50px auto;
    background-color: white;
    padding: 3em 3em;
    position: relative;
    border-radius: 2em;    
    min-width: 60vw;
}

.main-menu-complete {
  margin: 3vh 2vw;
  background-color: white;
  padding: 3em 3em;
  position: relative;
  border-radius: 2em;    
  min-width: 40vw;
}

#logo {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 1021;
}


#menu-header {
    text-align: left;
    background-color: lightgray;
    padding: 10px 30px;
    position: relative;
    border-radius: 15px;    
    /* min-width: 500px; */
    /* width: max-content; */
}

#menu-team {
    text-align: left;
    min-width: 900px;
}

#menu-links {
    margin-top: 50px;
}

#registerForm {
    min-width: 400px;
    width: 100%;
}

#registerForm .row {
    margin-top: 10px;
}

#tournament-list{
  width: max-content;
}

/* Banners */

.large-banner {
  width: 100%;
}

.medium-banner {
  width: 70%;
}

/* links inside buttons */
button a{
  text-decoration: none;
  color: white;
}

/* Custom file uploads */
.drop-container {
    position: relative;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    padding: 20px;
    border-radius: 10px;
    border: 2px dashed #555;
    color: #444;
    cursor: pointer;
    transition: background .2s ease-in-out, border .2s ease-in-out;
  }
  
  .drop-container:hover {
    background: #eee;
    border-color: #111;
  }
  
  .drop-container:hover .drop-title {
    color: #222;
  }
  
  .drop-title {
    color: #444;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    transition: color .2s ease-in-out;
  }
  
  input[type=file] {
    width: 400px;
    max-width: 100%;
    color: #444;
    padding: 5px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #555;
  }
  
  input[type=file]::file-selector-button {
    margin-right: 20px;
    border: none;
    background: #084cdf;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
  }
  
  input[type=file]::file-selector-button:hover {
    background: #0d45a5;
  }


  /* Tournament management styles */

  .header-title {
    display: inline-block;
    font-size: 50px;
    font-weight: bold;
}

#list-teams {
  /* width: max-content; */
  text-align: left;
}

#list-categories {
  /* width: max-content; */
  text-align: left;
}


/* Table styles */ 

table.dataTable thead .sorting:after,
table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc_disabled:after,
table.dataTable thead .sorting_desc_disabled:before {
  bottom: .5em;
}

.table_link{
  text-decoration: none;
  color: darkblue;
  font-weight: bold;
}

.hidden {
  font-size: 0;
}


/* File frames */

iframe {
  border:none;
  min-width:100%;
  height: 400px;
  text-align: center;
}

/* Buttons margins */

.btn-margin-left {
  margin-left: 2px;
}
.btn-margin-right {
  margin-right: 2px;
}