#settings {
    margin-top: 1rem;
    padding: 2rem;
    background-color: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 10px;

    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 90;

    width: 80%;
    min-width: 800px;
    height: 80%;
    min-height: 200px;
}

#open-settings {
    position: absolute;
    left: 10px;
    top: 10px;
}

#settings h3 {
    margin: 0;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.shortcut-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 5px;
}

.shortcut-options label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.95rem;
}

.shortcut-options input[type="checkbox"] {
    cursor: pointer;
}

.shortcut-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}
