/* Stronghold Finder styles */
.sh-description {
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.5;
}

.sh-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.sh-point {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 15px;
    transition: background-color 0.3s ease;
}

body.dark .sh-point,
html.dark .sh-point {
    background: var(--bg-dark);
}

.sh-point-header {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 16px;
}

.sh-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sh-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sh-input-group label {
    min-width: 50px;
    font-size: 14px;
    font-weight: 500;
}

.sh-input-group input {
    flex: 1;
    padding: 8px 12px;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    font-size: 14px;
    background: var(--card-light);
    color: var(--text-light);
    transition: all 0.2s ease;
}

body.dark .sh-input-group input,
html.dark .sh-input-group input {
    border-color: var(--border-dark);
    background: var(--card-dark);
    color: var(--text-dark);
}

.sh-input-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.sh-error {
    display: none;
    color: #ef4444;
    text-align: center;
    padding: 15px;
    margin-top: 15px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
}

.sh-error.show {
    display: block;
}

.sh-result {
    display: none;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    color: white;
}

.sh-result.show {
    display: block;
}

.sh-result-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.sh-coords {
    font-size: 32px;
    font-weight: 700;
    font-family: "Cascadia Code", "Fira Code", monospace;
    margin-bottom: 15px;
}

.sh-copy-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.sh-copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.sh-instructions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sh-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sh-step-num {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.sh-step span:last-child {
    line-height: 1.4;
}

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

    .sh-coords {
        font-size: 24px;
    }
}
