/* General Styles */
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f6f9;
    color: #333;
    line-height: 1.6;
}

h1, h2 {
    color: #2c3e50;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

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

table th {
    background-color: #3498db;
    color: #fff;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Form Styles */
form {
    margin: 20px 0;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input, form select, form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    background-color: #3498db;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border: none;
}

form button:hover {
    background-color: #2980b9;
}

/* Logout Link */
.logout {
    text-align: right;
    margin-top: 10px;
}

form button[type="submit"] {
    background-color: #e74c3c;
    color: #fff;
    font-size: 14px;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
}

form button[type="submit"]:hover {
    background-color: #c0392b;
}

/* Estilos para la consola de logs */
.iframe-container {
    width: 100%;
    height: 400px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    background-color: #000;
    color: #fff;
}
