body {
    background-color: #0f172a;
    color: white;
    font-family: sans-serif;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-container {
    text-align: center;
    margin-top: 50px;
}

.login-container h1 {
    font-size: 2.5em;
}

.login-container input {
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #334155;
    background-color: #1e293b;
    color: white;
    width: 300px;
}

.login-container button {
    width: 100%;
    border-radius: 12px;
    height: 3.5em;
    background-color: #2563eb;
    color: white;
    font-weight: bold;
    border: none;
    transition: 0.3s;
    cursor: pointer;
    margin-top: 10px;
}

.dashboard-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    gap: 20px;
    padding: 20px;
}

.sidebar {
    width: 250px;
    background-color: #1e293b;
    padding: 25px;
    border-radius: 18px;
    border: 1px solid #334155;
}

.sidebar h2 {
    margin-top: 0;
}

.sidebar button {
    width: 100%;
    border-radius: 12px;
    height: 3.5em;
    background-color: #2563eb;
    color: white;
    font-weight: bold;
    border: none;
    transition: 0.3s;
    cursor: pointer;
    margin-top: 10px;
}

.main-content {
    flex-grow: 1;
}

.main-content h1 {
    margin-top: 0;
}

.bot-control {
    background-color: #1e293b;
    padding: 25px;
    border-radius: 18px;
    border: 1px solid #334155;
    margin-bottom: 20px;
}

.console {
    background-color: #000;
    color: #10b981;
    padding: 15px;
    border-radius: 10px;
    height: 300px;
    overflow-y: auto;
}

pre {
    margin: 0;
}
