
#dravhun-translator {
    display: flex;
    gap: 30px;
    background-color: #0f0f0f;
    color: #ddd;
    padding: 20px;
    border: 1px solid #550000;
    border-radius: 0px;
    max-width: 100%;
    box-sizing: border-box;
}

#dravhun-translator-left {
    flex: 1;
}

#dravhun-translator-right {
    flex: 1;
    padding-left: 20px;
    border-left: 1px solid #333;
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

#dravhun-translator select,
#dravhun-translator textarea {
    width: 100%;
    background-color: #1a1a1a;
    border: 1px solid #444;
    color: #eee;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    border-radius: 4px;
}

#dravhun-translator button {
    background-color: #770000;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

#dravhun-translator button:hover {
    background-color: #990000;
}

#dravhun-output-box {
    border: 1px solid #333;
    padding: 10px;
    margin-top: 15px;
    background: #1a1a1a;
    border-radius: 4px;
    color: #eee;
    font-size: 16px;
    white-space: pre-wrap;
}

#dravhun-rune-output {
    margin-top: 10px;
    padding: 10px 0;
}

#dravhun-rune-keyboard {
    display: none;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 15px;
}

.dravhun-rune {
    width: 48px;
    height: 48px;
    cursor: pointer;
    padding: 3px;
    background: #111;
    border: 1px solid #333;
    border-radius: 4px;
    object-fit: contain;
    transition: border 0.2s ease;
}

.dravhun-rune:hover {
    border-color: #770000;
}


.dravhun-rune-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    display: inline-block;
}

.dravhun-rune {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 1px solid #333;
    border-radius: 4px;
    background: #111;
    transition: border 0.2s ease;
    cursor: pointer;
}

.dravhun-rune:hover {
    border-color: #770000;
}

.dravhun-rune-label {
    position: absolute;
    bottom: 2px;
    right: 4px;
    font-size: 10px;
    color: #aaa;
    font-family: monospace;
    pointer-events: none;
}


.dravhun-rune-output-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin: 2px;
    vertical-align: middle;
}
