/* Diff Tool Specific Styles */

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}



.pc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .pc {
        grid-template-columns: 1fr;
    }
}

.p {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

textarea {
    width: 100%;
    height: 300px;
    background: var(--panel-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text);
    font-family: 'Inter', monospace;
    font-size: 0.95rem;
    resize: vertical;
    outline: none;
    transition: all 0.2s ease;
}

textarea:focus {
    border-color: var(--primary);
}

.as {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.do {
    background: var(--panel-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    min-height: 200px;
    padding: 1rem 0;
    white-space: pre-wrap;
    font-family: 'Inter', monospace;
    line-height: 1.6;
    overflow-x: auto;
}

.dl {
    display: flex;
}

.ln {
    color: var(--text-muted);
    width: 40px;
    flex-shrink: 0;
    text-align: right;
    padding-right: 15px;
    user-select: none;
    border-right: 1px solid var(--border);
    margin-right: 15px;
}

.lc {
    flex-grow: 1;
    overflow-wrap: break-word;
    word-break: normal;
}

.do span {
    border-radius: 3px;
    padding: 0.1rem 0.2rem;
}

.da {
    background-color: var(--diff-add-bg);
    color: var(--diff-add-text);
}

.dr {
    background-color: var(--diff-del-bg);
    color: var(--diff-del-text);
    text-decoration: line-through;
}


