body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #6596e3, #d1cce3);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 90%;
    max-width: 400px;
}

h1 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
}

#titleInput {
    width: calc(100% - 24px);
    max-width: 100%;
    padding: 10px 12px;
    margin: 0 auto 15px auto;
    display: block;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    box-sizing: border-box;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 10px;
}

button {
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
    color: #fff;
}

#historyButton {
    background-color: #28a745;
}

#historyButton:hover {
    background-color: #218838;
}

#stopButton {
    background-color: #dc3545;
}

#stopButton:hover {
    background-color: #c82333;
}