/* Hash Generator specific styles */
.tab-container {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--surface-border);
    padding-bottom: 15px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
    color: white;
    background: linear-gradient(135deg, #4cc9f0, #4361ee);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.text-input {
    width: 100%;
    height: 150px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    padding: 15px;
    color: var(--text-primary);
    font-family: monospace;
    font-size: 1rem;
    resize: vertical;
    outline: none;
    transition: border-color 0.3s ease;
    margin-bottom: 30px;
}

.text-input:focus {
    border-color: var(--accent-color);
}

.outputs-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.output-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.output-label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.output-field-container {
    display: flex;
    position: relative;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--surface-border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.output-field-container:focus-within {
    border-color: var(--accent-color);
}

.output-field {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    padding: 12px 15px;
    font-family: monospace;
    font-size: 0.95rem;
    width: 100%;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-left: 1px solid var(--surface-border);
    color: var(--text-secondary);
    padding: 0 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copy-btn:hover {
    background: var(--accent-color);
    color: #050510;
}

.copy-btn.copied {
    background: #27c93f;
    color: white;
}

@media (max-width: 600px) {
    .tab-container {
        flex-direction: column;
        gap: 10px;
    }
    .tab-btn {
        width: 100%;
        justify-content: center;
    }
}
