#puzzle-panel {
    display: none;
}

button.puzzle-model {
	right: 0 !important;
	position: relative;
}

.puzzle-panel {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    background: #fafafa;
    font-family: Arial, sans-serif;
    border-radius: 6px;
}

.puzzle-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 6px;
}

.puzzle-status {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
}

.puzzle-list {
    max-height: 220px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 6px;
    background: #fff;
    margin-bottom: 12px;
}

.puzzle-item {
    padding: 6px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.puzzle-item:hover {
    background: #f0f0f0;
}

.puzzle-buttons button {
    width: 100%;
    margin-bottom: 6px;
    padding: 8px;
    font-size: 14px;
    cursor: pointer;
}


