body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

h1, h2 {
    color: #333;
}

.navbar {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
}

.navbar .nav-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar .nav-links li {
    margin-left: 20px;
}

.navbar .nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.navbar .nav-links a:hover {
    background-color: #555;
}

.flashes {
    list-style-type: none;
    padding: 0;
}

.flashes li {
    position: relative;
    background-color: #ffdddd;
    border: 1px solid #dd5555;
    padding: 10px;
    margin-bottom: 10px;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #dd5555;
    cursor: pointer;
}

form {
    margin-bottom: 20px;
}

label {
    display: inline-block;
    width: 150px;
}

input[type="text"], select {
    width: calc(100% - 160px);
    padding: 5px;
}

button {
    padding: 10px 20px;
    background-color: #5cb85c;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #4cae4c;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.spinner-border {
    display: none;
    width: 1.5rem;
    height: 1.5rem;
    vertical-align: text-bottom;
    border: .25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
}

@keyframes spinner-border {
    to { transform: rotate(360deg); }
}

#messages {
    background-color: #ffffff;
    border: 1px solid #ddd;
    padding: 10px;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 20px;
}

.post-link {
    color: blue;  /* Change the color to make it stand out */
    font-weight: bold;
}

.console {
    font-family: 'Courier New', Courier, monospace; /* Monospaced font */
    background-color: #1e1e1e; /* Dark background */
    color: #33ff33cb; 
    padding: 20px;
    border-radius: 5px;
    height: 70vh;
    max-height: 80vh; /* Limit the height */
    overflow-y: auto; /* Scroll if content overflows */
    white-space: pre-wrap; /* Preserve white space */
    line-height: 1.25; /* Remove extra spacing between lines */
}

/* Optional: Style for individual lines if needed */
.console-line {
    margin: 0;
    padding: 0;
}

.console-line a{
    color: #ffffff;
    text-decoration: none !important;
}

/* Different styles for specific log content */
.log-automatic {
    color: #fff; /* Yellow for automatic moderation */
    background-color: darkgreen;
}
.log-direct {
    color: #000; /* Yellow for automatic moderation */
    background-color:#f7a100
}
.log-forzed {
    color: #000000; /* Yellow for automatic moderation */
    background-color: #00d9ff;
}
.log-forzed-evaluating {
    color: #fff; /* Yellow for automatic moderation */
    background-color:#1900ff;
}

.log-post {
    color: #ff6600; /* Orange for post moderation */
}

.log-success {
    color: #66ff66; /* Light green for success */
}

.log-obteniendo {
    color: #00d9ff; /* Light green for success */
}

.log-warning {
    color: #ec312e; /* Red for warnings or attempts */
}