.control-panel {
    position: fixed;
    top: 10px;
    left: 10px;
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    max-width: 300px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.control-panel-header {
    position: relative;
    cursor: move;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

.control-panel-title {
    margin: 0;
    text-align: center;
    font-size: 16px;
}

.control-panel-close {
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
}

.control-panel-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.control-panel-field {
    display: flex;
    align-items: center;
}

.control-panel-checkbox {
    margin-right: 10px;
}

.control-panel-label {
    user-select: none;
    flex-grow: 1;
}

.control-panel-number {
    width: 60px;
    padding: 4px;
    margin-left: 10px;
}

.control-panel-button-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.control-panel-button {
    padding: 8px 16px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.control-panel-button:hover {
    background-color: #45a049;
}

.rebuild-bot-btn {
    background-color: orangered;
    color: white;
    width: 238px;
    border: none;
    position: fixed;
    top: 480px;
    left: 10px;
    height: 48px;
    font-size: 24px;
}

.rebuild-bot-btn:hover {
    background-color: #d9534f;
}

.show-bot-btn {
    background-color: #61dbfb;
    color: white;
    width: 238px;
    border: none;
    position: fixed;
    top: 538px;
    left: 10px;
    height: 48px;
    font-size: 24px;
}
