body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f7fa;
    color: #333;
    margin: 0;
}

.dashboard-container {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

input, textarea, button {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
}

button {
    cursor: pointer;
    background-color: #4caf50;
    color: white;
    border: none;
}

button:hover {
    background-color: #45a049;
}

.generate-snippet, .stats-section {
    margin-top: 30px;
}

#snippetOutput {
    width: 100%;
    height: 60px;
    margin-top: 10px;
}
