/* CSS TEMPORAL PARA CHAMILO 

/* Body y fuente principal */
body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background-color:#c1dbcb ;
}

/* Enlaces */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Encabezados */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

/* Contenedores generales */
.container {
    border
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Formularios */
input, select, textarea, button {
    font-family: inherit;
    font-size: 14px;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 3px rgba(0,123,255,0.3);
}

/* Botones */
button, .btn {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, .btn:hover {
    background-color: #0056b3;
}

/* Tablas */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

th {
    background-color: #f1f1f1;
}

/* Chats y mensajes */
.chat-message {
    background-color: #e9ecef;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 4px;
}

.chat-message.user {
    background-color: #d1ecf1;
}

/* Documentos y editor */
.document-content, .editor-content {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    body {
        font-size: 13px;
    }
    .container {
        width: 95%;
    }
    table {
        font-size: 12px;
    }
}
