/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-xnfb33cev1] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-xnfb33cev1] {
    flex: 1;
}

.sidebar[b-xnfb33cev1] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-xnfb33cev1] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-xnfb33cev1]  a, .top-row[b-xnfb33cev1]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-xnfb33cev1]  a:hover, .top-row[b-xnfb33cev1]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-xnfb33cev1]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-xnfb33cev1] {
        justify-content: space-between;
    }

    .top-row[b-xnfb33cev1]  a, .top-row[b-xnfb33cev1]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-xnfb33cev1] {
        flex-direction: row;
    }

    .sidebar[b-xnfb33cev1] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-xnfb33cev1] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-xnfb33cev1]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-xnfb33cev1], article[b-xnfb33cev1] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */

*[b-6bp4nwvd8h] {
    padding:0;
    margin:0;
    box-sizing:border-box;
}
nav[b-6bp4nwvd8h] {
    /*font-family: "Handlee", cursive;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #2c8eec;
    padding: 1em;
}

nav a[b-6bp4nwvd8h] {
    text-decoration:none;
    text-transform:capitalize;
    color:white;
}

#Logo[b-6bp4nwvd8h] {
    font-size:1.2em;
    font-weight:600;
}

input[type=checkbox][b-6bp4nwvd8h]
{
     appearance:none;
    -webkit-appearance:none;
}

label[b-6bp4nwvd8h] {
    display:none;
}

ul[b-6bp4nwvd8h] {
    list-style:none;
    display:flex;
    gap:1em;
}

    ul a:hover[b-6bp4nwvd8h] {
        /*background-color: #3474e6;
        border-radius: 0.5em;*/
        /*background: linear-gradient(92deg, #f35626, #feab3a);*/ /* Define your gradient colors */
        background: linear-gradient(to top left, #ff75c3, #ffa647, #ffe83f, #9fff5b, #70e2ff, #cd93ff);
        background-clip: text; /* Clip the background to the text */
        -webkit-text-fill-color: transparent; /* Make the text transparent */
        -webkit-animation: hue 2s infinite linear;
    }

@-webkit-keyframes hue {
    from {
        -webkit-filter: hue-rotate(0deg);
    }

    to {
        -webkit-filter: hue-rotate(-360deg);
    }
}

ul a[b-6bp4nwvd8h] {
    padding:0.5em;
}

.active[b-6bp4nwvd8h] {
    border-bottom:2px solid #ffffff;
}

@media screen and (max-width:600px)
{
    label[b-6bp4nwvd8h] {
        display:block;
        cursor:pointer;
    }
    ul[b-6bp4nwvd8h] {
        font-size: 1.2em;
        position: absolute;
        left: -100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /*background-color: #0a51cc;*/
        background-color: rgba(0,0,0,0.75);
        gap: 2em;
        top: 60px;
        width: 100%;
        /*height: calc(100vh-100px);*/
        height: min-content;
        /*height: 401px;*/
        transition: 0.5s;
        z-index: 100;
    }
    input[type=checkbox]:checked ~ ul[b-6bp4nwvd8h] {
        left: 0;
    }
   
}





/* /Pages/Home.razor.rz.scp.css */
#chatbot[b-guk4ee2gux] {
  position: fixed;
  bottom: 205px;
  right: 41px;
  width: 300px;
  border: 1px solid #0a51cc;
  border-radius: 10px;
  background-color: #0a51cc;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
  /*font-family: 'Handlee', cursive;*/
  font-size: larger;
}

#chat-header[b-guk4ee2gux] {
  background-color: #0078d7;
  color: white;
  padding: 10px;
  text-align: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#chat-body[b-guk4ee2gux] {
  padding: 10px;
  background: #2196f3;
}

#chat-body input:focus[b-guk4ee2gux] {
  outline: none;
  border: none;
  box-shadow: 0 0 5px rgba(0, 120, 215, 0.5);
}

#messages[b-guk4ee2gux] {
  height: 200px;
  overflow-y: auto;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  padding: 5px;
  background-color: white;
}

#user-input[b-guk4ee2gux] {
  width: calc(100% - 60px);
  padding: 15px;
  margin-right: 5px;
  font-size:medium;
  border-radius: 20px;
  border: none;
  font-family: Handlee, cursive;
}

.close-btn[b-guk4ee2gux] {
  background-color: #f44336;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 5px;
  font-family: Handlee, cursive;
}

#send-btn[b-guk4ee2gux] {
  padding: 5px 10px;
  background-color: #0078d7;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 5px;
  font-family: Handlee, cursive;
}

#send-btn:hover[b-guk4ee2gux] {
  background-color: #005bb5;
}

.contenedor[b-guk4ee2gux] {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px;
}

.boxes .contenedor[b-guk4ee2gux] {
  display: flex;
  justify-content: space-between;
}



.box[b-guk4ee2gux] {
  flex: 1;
  background: #3474e6;
  color: #fff;
  border-radius: 10px;
  margin: 20px 20px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
  padding: 15px 20px;
  font-family: "Handlee";
}

.box i[b-guk4ee2gux] {
  margin-right: 10px;
}

.caja[b-guk4ee2gux] {
  display: block;
  text-align: left;
  color: #fff;
  background: #0a51cc;
  border-radius: 10px;
  margin: 10px 10px 10px 10px;
  padding: 20px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
}

.caja h2[b-guk4ee2gux] {
  text-align: center;
}

.col-25[b-guk4ee2gux] {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75[b-guk4ee2gux] {
  float: left;
  width: 75%;
  margin-top: 6px;
}

.fila[b-guk4ee2gux]:after {
  content: "";
  display: table;
  clear: both;
}

.joinBtn:hover[b-guk4ee2gux] {
  background-color: #b0b1b1;
}

.centered[b-guk4ee2gux] {
  color: white;
  font-size: x-large;
  text-align: center;
  font-family: "Handlee";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loader[b-guk4ee2gux] {
  width: 120px;
  height: 120px;
  animation: spin-b-guk4ee2gux 1s linear infinite;
}

.cargador[b-guk4ee2gux] {
  width: 50px;
  height: 50px;
  animation: spin-b-guk4ee2gux 0.5s linear infinite;
}

@keyframes spin-b-guk4ee2gux {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .boxes .contenedor[b-guk4ee2gux] {
    display: block;
    text-align: center;
  }
}
/* /Pages/LoginPage.razor.rz.scp.css */
.center[b-wbtp6sz7sb] {
    margin: auto;
    width: 50%;
    border: 3px solid green;
    padding: 10px;
}

.box[b-wbtp6sz7sb] {
    flex: 1;
    background: #3474e6;
    color: #fff;
    border-radius: 10px;
    margin: 20px 20px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
    padding: 15px 20px;
}
.contenedor[b-wbtp6sz7sb] {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px;
}

.boxes .contenedor[b-wbtp6sz7sb] {
    display: flex;
    justify-content: space-between;
}
/* /Pages/LoginPageTFA.razor.rz.scp.css */
.center[b-ymvzi2p2dy] {
    margin: auto;
    width: 50%;
    border: 3px solid green;
    padding: 10px;
}

.box[b-ymvzi2p2dy] {
    flex: 1;
    background: #3474e6;
    color: #fff;
    border-radius: 10px;
    margin: 20px 20px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
    padding: 15px 20px;
}
.contenedor[b-ymvzi2p2dy] {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px;
}

.boxes .contenedor[b-ymvzi2p2dy] {
    display: flex;
    justify-content: space-between;
}
