body {
    background: linear-gradient(to bottom, #2e0066, #000);
    color: #e0e0e0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
}
h2, h3 {
    color: #ff007f;
    text-align: center;
}
form {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
input, select, button {
    padding: 10px;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
}
button {
    background: #0078d7;
    color: #fff;
    transition: background 0.3s;
    cursor: pointer;
}
button:hover {
    background: #005bb5;
}
.droppable-table {
    width: 100%;
    border-collapse: collapse;
}
.droppable-table th, .droppable-table td {
    padding: 10px;
    text-align: left;
}
.droppable-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}
.droppable-table.drop-highlight {
    background-color: rgba(0, 120, 215, 0.1);
}

.droppable-table.drop-highlight {
    border: 2px dashed #007BFF; /* Синий пунктирный бордер */
    background-color: #f0f8ff; /* Лёгкий голубой фон */
}
.drop-highlight {
    border: 2px dashed #00f; /* Синяя граница для подсветки */
    background-color: rgba(0, 0, 255, 0.1); /* Лёгкая голубая заливка */
}