.keyword-tool-container {
    background: linear-gradient(to bottom right, #f7f7f7, #e0f7ff);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tool-header {
    text-align: center;
    margin-bottom: 20px;
}

.tool-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tool-form label {
    font-weight: bold;
}

input[type="text"], select, input[type="range"] {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

button {
    background-color: #6a5acd;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #5a4ec7;
}

#forecast-results {
    margin-top: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

#forecast-results div {
    margin-bottom: 15px;
}
