#leftControlPanel {
    position: fixed;
    top: 10px;
    left: 10px;
    width: 260px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-family: system-ui, sans-serif;
    color: #eee;
    font-size: 12px;
    z-index: 1000;
}

#rightControlPanel {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 260px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-family: system-ui, sans-serif;
    color: #eee;
    font-size: 12px;
    z-index: 1000;
}

.cp-section {
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cp-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cp-title {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.85;
}

.cp-subtitle {
    margin: 6px 0 4px;
    font-size: 11px;
    opacity: 0.7;
}

.cp-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.cp-row span {
    opacity: 0.8;
}

.cp-row input {
    max-width: 140px;
    box-sizing: border-box;
}

input[type="color"],
input[type="range"],
input[type="checkbox"],
select {
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: #fff;
}

select {
    padding: 5px;
    width: 100%;
}

input[type="color"] {
    width: 50px;
    height: 22px;
    padding: 0;
}

input[type="range"] {
    width: 120px;
}

input[type="text"] {
    background-color: white;
    border-radius: 3px;
    color: black;
    padding-left: 5px;
    padding-right: 5px;
}

input[type="password"] {
    background-color: white;
    border-radius: 3px;
    color: black;
    padding-left: 5px;
    padding-right: 25px;
}

input[type="text"]:read-only,
input[type="password"]:read-only {
    background-color: gray;
    color: white;
}

.password-wrapper {
    position: relative;
    max-width: 140px;
}

.password-wrapper input {
    width: 100%;
    padding-right: 28px;
    box-sizing: border-box;
}

.eye-btn {
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.75;
}

.eye-btn:hover {
    opacity: 1;
}

.eye-btn svg {
    display: block;
}

#fileDropZone {
    border: 1px dashed rgba(255, 255, 255, 0.3);
    padding: 16px 8px;
    text-align: center;
    border-radius: 4px;
    font-size: 11px;
    background: rgba(20, 20, 20, 0.9);
}

#fileDropZone:hover {
    border-color: #4ea1ff;
}

#fileDropZone.dragover {
    border-color: #4ea1ff;
    background: rgba(20, 40, 70, 0.3);
    cursor: pointer;
}

button {
    border: 1px solid white;
    border-radius: 3px;
    padding: 0px 5px;
}