/* Development Panel and Controls Styles */

/* Dev Toggle Button */
.dev-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 80px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all 0.3s ease;
    z-index: 2147483647;
}

.dev-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    transform: scale(1.05);
}

/* Regex Toggle Button */
.regex-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 170px; /* Positioned to the left of the controls toggle button */
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all 0.3s ease;
    z-index: 2147483647;
}

.regex-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    transform: scale(1.05);
}

/* Controls Toggle Button */
.controls-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 130px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all 0.3s ease;
    z-index: 2147483647;
}

.controls-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    transform: scale(1.05);
}

/* Dev Panel */
.dev-panel {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 300px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #333;
    border-radius: 8px;
    z-index: 2147483647;
    color: white;
    font-family: 'Crimson Text', serif;
    transition: all 0.3s ease;
}

.dev-control-section {
    margin-bottom: 16px;
}

.dev-control-section label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #ccc;
}

.dev-select {
    width: 100%;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #555;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    font-family: 'Crimson Text', serif;
}

.dev-select:focus {
    outline: none;
    border-color: #007acc;
    box-shadow: 0 0 0 2px rgba(0, 122, 204, 0.2);
}

.dev-select option {
    background: #333;
    color: white;
}

.dev-btn {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #555;
    border-radius: 4px;
    color: white;
    font-size: 12px;
    font-family: 'Crimson Text', serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dev-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #007acc;
}

.dev-btn:active {
    background: rgba(255, 255, 255, 0.3);
}

.dev-btn-small {
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #444;
    border-radius: 3px;
    color: #ccc;
    font-size: 10px;
    font-family: 'Crimson Text', serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dev-btn-small:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #007acc;
    color: white;
}

.dev-note {
    margin-top: 8px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    border-left: 3px solid #007acc;
}

.dev-note small {
    color: #999;
    font-size: 11px;
    line-height: 1.3;
    font-style: italic;
}
