#darkai-wrapper {
    font-family: "Segoe UI", sans-serif;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    color: #212529;
}

#darkai-wrapper h1 {
    text-align: center;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

#darkai-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#darkai-wrapper input[type="password"],
#darkai-wrapper input[type="text"],
#darkai-wrapper textarea,
#darkai-wrapper input[type="file"] {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
}

#darkai-wrapper input[type="submit"],
#darkai-wrapper button {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#darkai-wrapper input[type="submit"]:hover,
#darkai-wrapper button:hover {
    background-color: #0056b3;
}

#darkai-wrapper #response {
    white-space: pre-wrap;
    background-color: #e9ecef;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 15px;
    margin-top: 20px;
    max-height: 400px;
    overflow-y: auto;
    font-size: 0.95rem;
    line-height: 1.5;
}

#darkai-wrapper #history {
    margin-top: 30px;
}

#darkai-wrapper .history-entry {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #ffffff;
    border-left: 5px solid #007bff;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

#darkai-wrapper .history-entry .prompt {
    font-weight: bold;
    color: #007bff;
}

#darkai-wrapper .history-entry .response {
    margin-top: 5px;
    color: #343a40;
}