body {
    background: #f5f7fa;
}

.hash-tool-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.input-section,
.output-section {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.section-header h3 {
    color: #444;
    font-size: 1.3rem;
}

#hashTextInput {
    width: 100%;
    min-height: 150px;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
}

#hashTextInput:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.hash-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hash-item {
    padding: 1rem;
    background: #f5f7fa;
    border-radius: 8px;
}

.hash-label {
    font-weight: 600;
    color: #667eea;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.hash-value-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hash-value {
    flex: 1;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.95rem;
    color: #333;
    word-break: break-all;
    background: white;
    padding: 0.8rem;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.copy-btn {
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: #f0f0f0;
    color: #666;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.info-section {
    background: #f0fdf4;
    border: 1px solid #d1fae5;
    border-radius: 12px;
    padding: 1.5rem;
}

.info-section h3 {
    color: #065f46;
    margin-bottom: 1rem;
}

.info-section ul {
    padding-left: 1.5rem;
    margin: 0;
}

.info-section li {
    color: #374151;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hash-tool-container {
        padding: 1rem;
    }
    
    .hash-value-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hash-value {
        font-size: 0.85rem;
    }
    
    .copy-btn {
        width: 100%;
        margin-top: 0.5rem;
    }
}
