/* src/styles.css */
:root {
  --noir: #333;
  --blanc-nacre: #f5f5f5;
}
body,
h1,
h2,
p,
ul,
li,
a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Helvetica, sans-serif;
  background-color: var(--blanc-nacre);
  color: var(--noir);
  max-width: 2000px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
}
header {
  background-color: var(--blanc-nacre);
  padding: 0.3rem 2rem;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  z-index: 1000;
}
.bandeau {
  display: flex;
  align-items: center;
  width: 100%;
}
.logo img {
  height: 60px;
  margin-right: 40px;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
}
.navigation-menu {
  margin-left: 0;
}
.dropdown {
  position: relative;
  display: inline-block;
  margin-right: 15px;
}
.dropbtn {
  background-color: #f78b44;
  color: white;
  padding: 10px 15px;
  font-size: 16px;
  font-family: "Helvetica", sans-serif;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  border-radius: 10px;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 4px;
  max-height: 300px;
  overflow-y: auto;
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #f1f1f1;
}
.dropdown-content a:hover {
  background-color: #f1f1f1;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover .dropbtn {
  background-color: #f78b44;
}
.dropdown-header {
  padding: 10px 16px;
  background-color: #f8f8f8;
  font-weight: bold;
  color: #333;
  border-bottom: 1px solid #ddd;
}
nav {
  display: flex;
  gap: 2.5rem;
  margin-right: 50px;
}
.right-menu {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 50px;
  gap: 20px;
}
.icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.icon:hover {
  transform: scale(1.05);
}
.icon p {
  margin-top: 0px;
  font-size: 12px;
  color: #333;
  font-family: "Helvetica", sans-serif;
  font-weight: bold;
}
.icon img {
  height: 70px;
}
.btn-orange,
.btn-black {
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-family: "Helvetica", sans-serif;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn-orange {
  background-color: #f78b44;
  color: white;
}
.btn-black {
  background-color: #000;
  color: white;
}
.btn-orange:hover,
.btn-black:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
main {
  padding-top: 120px;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
  min-height: calc(100vh - 80px - 50px);
}
.rectangle-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}
.background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px) brightness(0.8);
  transition: filter 0.3s ease;
}
.championnats {
  display: block;
  padding: 1rem;
}
.rectangle {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 0.2rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}
.rectangle:hover {
  transform: scale(0.98);
  background:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0.85));
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.rectangle img {
  width: 70px;
  height: auto;
  margin-bottom: 0.02rem;
}
.rectangle h2 {
  font-size: 1.1rem;
  color: var(--noir);
}
.rectangle:focus {
  outline: 3px solid #007bff;
  outline-offset: 2px;
}
.match-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40%;
}
.team img {
  width: 80px;
  height: auto;
  margin-bottom: 0.2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.vs {
  font-family:
    "Helvetica",
    Arial,
    sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
}
.match-header {
  text-align: center;
  margin: 20px 0;
}
.match-header .rectangle {
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
  padding: 15px;
  transform: scale(1.2);
  background-color: var(--blanc-nacre);
}
.match-tabs {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
.match-tabs ul {
  display: flex;
  list-style: none;
  padding: 0;
  background-color: var(--blanc-nacre);
  border-radius: 12px;
  overflow: hidden;
}
.match-tabs li {
  margin: 0;
  border-right: 0px solid #000;
}
.match-tabs li:last-child {
  border-right: none;
}
.tab-link {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #333;
  background-color: var(--blanc-nacre);
  transition: all 0.3s ease;
  font-weight: bold;
  border-radius: 12px;
}
.tab-link:hover {
  background-color: #fafafa;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-weight: bold;
}
.tab-link.active {
  background-color: #f78b44;
  color: white;
  font-weight: bold;
}
.tab-link.restricted {
  color: #242424;
}
.tab-pane {
  display: none;
  padding: 20px;
  background-color: white;
  border-radius: 5px;
  margin-top: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.tab-pane.active {
  display: block;
}
.login-required {
  text-align: center;
  padding: 30px;
  background-color: #f8f8f8;
}
.odds-table {
  width: 100%;
  border-collapse: collapse;
}
.odds-table th,
.odds-table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}
.odds-table th {
  background-color: #f0f0f0;
}
footer {
  background-color: var(--blanc-nacre);
  color: var(--noir);
  text-align: center;
  padding: 0.2rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
.form-container {
  max-width: 500px;
  margin: 30px auto;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.form-container h1 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--noir);
  font-family: "Helvetica", sans-serif;
  font-weight: bold;
}
.form-group {
  margin-bottom: 20px;
  margin-right: 30px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-family: "Helvetica", sans-serif;
  font-weight: bold;
  color: var(--noir);
}
.form-input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  background-color: #f5f5f5;
}
.form-input:focus {
  background-color: white;
  border-color: #f78b44;
  outline: none;
  box-shadow: 0 0 0 2px rgba(247, 139, 68, 0.2);
}
.password-requirements {
  margin-top: 15px;
}
.requirement {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-family: "Helvetica", sans-serif;
  color: #666;
}
.requirement svg {
  margin-right: 10px;
  color: #4CAF50;
}
.btn-submit {
  width: 100%;
  padding: 15px;
  background-color: #f78b44;
  color: white;
  border: none;
  border-radius: 5px;
  font-family: "Helvetica", sans-serif;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}
.btn-submit:hover {
  background-color: #e67e3a;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
main {
  padding-bottom: 50px;
}
.rectangle:last-child {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  header {
    padding: 0.8rem 1rem;
    height: auto;
  }
  .bandeau {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
  }
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .logo img {
    height: 45px;
    padding: 0;
  }
  .icon[href="index.html"],
  .icon[href="#accueil"],
  .icon[href="../index.html"] {
    display: none;
  }
  .navigation-menu {
    margin-right: auto;
    margin-left: 0;
  }
  .dropbtn {
    padding: 6px 5px;
    font-size: 12px;
    margin-left: -5px;
  }
  .right-menu {
    margin-left: auto;
    gap: 5px;
    margin-right: 0;
    transform: translateX(-20px);
    display: flex;
    align-items: center;
  }
  .btn-orange,
  .btn-black {
    padding: 6px 5px;
    font-size: 12px;
  }
  main {
    padding-bottom: 50px;
    padding-top: 130px;
  }
  .rectangle:last-child {
    margin-bottom: 50px;
  }
  .match-header .rectangle {
    width: 90%;
    margin: 0 auto;
    transform: translateY(-50px);
  }
  .match-tabs {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    padding: 8px 0;
    margin-top: 0px;
    scrollbar-width: none;
    transform: translateY(-65px);
  }
  .match-tabs::-webkit-scrollbar {
    display: none;
  }
  .match-tabs ul {
    display: inline-flex;
    flex-wrap: nowrap;
    width: auto;
    padding: 0;
    margin: 0;
  }
  .match-tabs li {
    width: auto;
    flex-shrink: 0;
    margin-right: 5px;
    list-style: none;
  }
  .tab-link {
    display: block;
    padding: 10px 18px;
    text-decoration: none;
    color: #333;
    background-color: var(--blanc-nacre);
    transition: all 0.3s ease;
    font-weight: bold;
    border-radius: 12px;
    font-size: 14px;
  }
  .tab-link:hover {
    background-color: #fafafa;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-weight: bold;
  }
  .tab-link.active {
    background-color: #f78b44;
    color: white;
    font-weight: bold;
  }
}
.user-menu {
  position: relative;
  display: inline-block;
}
.user-btn {
  display: flex;
  align-items: center;
  background-color: #f78b44;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0px 12px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  height: 38px;
  width: auto;
}
.user-btn img {
  height: 40px;
  margin-right: 5px;
}
.user-dropdown {
  display: none;
  position: absolute;
  right: 0;
  background-color: white;
  min-width: 180px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 5px;
}
.user-dropdown a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}
.user-dropdown a:hover {
  background-color: #f1f1f1;
}
.user-menu:hover .user-dropdown {
  display: block;
}
#composition {
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#composition h2 {
  text-align: center;
  color: var(--noir);
  font-size: 1.5rem;
}
#composition h3 {
  color: #f78b44;
  margin-bottom: 10px;
}
#composition ul {
  list-style-type: none;
  padding: 0;
}
#composition ul li {
  padding: 8px;
  border-bottom: 1px solid #ddd;
  font-family: "Helvetica", sans-serif;
}
#composition ul li:last-child {
  border-bottom: none;
}
.auth-required-message {
  padding: 10px;
  border: 1px solid #ccc;
  margin-top: 10px;
  text-align: center;
}
.auth-required-message a {
  color: blue;
  text-decoration: underline;
}
.subscription-required-message {
  padding: 10px;
  border: 1px solid #ccc;
  margin-top: 10px;
  text-align: center;
}
.subscription-required-message a {
  color: blue;
  text-decoration: underline;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
