* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
  font-family: "code";
  src: url("/fonts/Monospace.ttf") format("truetype");
}

body {
    background-color: #1e1e1e;
    color: #d4d4d4;
    position: relative;
    overflow-y: scroll;
}

.editor {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.title-bar {
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5em 1em;
    color: white;
    height: 40px;
}

.window-controls {
    display: flex;
    gap: 0.5em;
}

.window-controls div {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.close {
    background-color: #ff5f57;
}

.minimize {
    background-color: #ffbd2e;
}

.maximize {
    background-color: #28c840;
}

.file-name {
    font-size: 1.2em;
}

.side-bar {
    background-color: #252526;
    width: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1em 0;
}

.side-bar ul {
    list-style: none;
    width: 100%;
}

.side-bar ul li {
    padding: 10px;
    text-align: center;
    color: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.side-bar ul li:hover {
    background-color: #3e3e42;
}

.code-area {
    display: flex;
    width: 100%;
    flex-grow: 1;
    overflow: hidden;
    color: #e5e2e2;
    background-color: #1e1e1e;
}

.line-numbers {
    background-color: #252526;
    padding: 1em;
    color: #858585;
    text-align: right;
    min-width: 40px;
}

.code-content {
    padding: 1em;
    width: 100%;
    overflow: auto;
    background-color: #1e1e1e;
}

pre {
    margin: 0;
    white-space: pre-wrap;
}

code {
    font-size: 1em;
}

.tag-code {
    color: #569cd6; /* Azul para las etiquetas */
}

.attr-code {
    color: #9cdcfe; /* Azul claro para los atributos */
}

.value-code {
    color: #d69d85; /* Rojo para los valores de atributos */
}

/*
 * Globals
 */


/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
}

.main-container {
    display: flex;
}

.banner-element1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container-wtp {
    background-color: #25D366;
    width: 80px;
    height: 80px;
    padding: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center !important;
    align-items: center;
    position: fixed;
    z-index: 1000;
    bottom: 30;
    right: 30;
  }
  
  .container-wtp img {
    width: 100%;
  }

.white-background {
    height: auto;         
    padding: 20px;       
    box-sizing: border-box; 
  }

.service-card { 
    height: 100%;
    color: #1e1e1e;
}

.overlay {
    position: fixed; /* Mantiene el elemento fijo sobre todos los demás */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1e1e1e;
    z-index: 999; /* Asegura que esté sobre otros elementos */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 14px;
}

.hidden {
    display: none;
}

.text-black {
    color: #1e1e1e;
}

.card-text {
    text-align: justify;
}

.container-trm {
    padding: 3% 5% 3% 5%;
    font-family: code;
  }

  .title {
    font-family: code;
  }
  
  .container-trm p {
    margin: 10px 0 20px 0;
    text-align: justify;
  }
  
  .container-trm ul li {
    text-align: justify;
    list-style-type: none;
    margin-left: -30px;
  }
  
  .container-trm ol li {
    text-align: justify;
  }
  
  .container-trm h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .container-trm h6 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .message-container {
    height: 400px;
    align-items: center;
    justify-content: center;
    display: flex;
    text-align: center;
    flex-direction: column;
  }

  .message-container h4 {
    color: #858585;
  }

  .mrg {
    margin-top: 30px;
  }

  .message-content {
    background-color: #1e1e1e;
  }

@media (max-width: 768px) {
    .main-container {
        flex-direction: column-reverse;
    }

    .lead {
        font-size: 1rem!important;
    }
    
    .container-wtp {
        width: 60px;
        height: 60px;
        padding: 13px;
    }
}


