/* Dark UI basics */
body {
    background-color: #121212;
    color: #eee;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    margin: 0;
}

#statusContainer {
    max-height: 800px;
    overflow-y: auto;
    padding-right: 16px;
}

.container {
    text-align: center;
    background: #1e1e1e;
    padding: 30px 50px;
    border-radius: 10px;
    box-shadow: 0 0 20px #0f0f0f;
    min-width: 280px;
}

button {
    background-color: #3a3a3a;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    color: #eee;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 15px;
}

button:hover {
    background-color: #555555;
}

#statusLabel {
    font-weight: 600;
    font-size: 16px;
    vertical-align: middle;
}

#actionBtn.dragover {
    background-color: #f0f0f0;
    border: 2px dashed #888;
}