/* Estilos generales del Template */
body {
    margin: 0;
    padding-bottom: 60px; 
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}
.header-left {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
}
.logo {
    width: 100px;
    height: 100px;
    display: block;
}
.menu-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
}
.menu-button {
    width: 50px;
    height: 50px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font-size: 24px;
    color: #333;
}
.menu-dropdown {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    min-width: 120px;
}
.menu-container:hover .menu-dropdown {
    display: block;
}
.menu-dropdown a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}
.menu-dropdown a:hover {
    background-color: #f5f5f5;
}
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f8f8;
    border-top: 1px solid #e7e7e7;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    color: #555;
    z-index: 999;
}

/* ESTILOS PARA EL CONTENIDO */
.content-container {
    margin-top: 120px; 
    display: flex;
    justify-content: center;
    padding: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.main-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 800px;
}

.session-id-display {
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}
.session-id-display span {
    font-family: monospace;
    background-color: #e9ecef;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

.paste-area {
    width: 100%;
}
/* Ocultamos el textarea original, ya que TinyMCE lo reemplaza */
.paste-area textarea {
    display: none;
}

.button-bar {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap; 
    gap: 10px;
}
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}
.btn-primary { background-color: #007bff; color: white; }
.btn-success { background-color: #28a745; color: white; }
.btn-secondary { background-color: #6c757d; color: white; }
.btn-info { background-color: #17a2b8; color: white; }
.btn-danger { background-color: #dc3545; color: white; }
.btn-warning {
    background-color: #ffc107;
    color: #212529;
}

/* ESTILOS QR */
.qr-area {
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
}
.qr-image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}
.qr-image-container img {
    width: 200px;
    height: 200px;
    border: 1px solid #ddd;
    background-color: white;
    padding: 5px;
}