.container {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
}

.array-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.array-item {
    background-color: #ddd;
    margin: 0 5px;
    padding: 10px;
    border-radius: 4px;
    font-size: 18px;
    width: 50px;
    text-align: center;
}

.status {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
}