/* Tool-specific styles */
.tool-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.tool-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tool-header h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.tool-header p {
    color: #4b5563;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.tool-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.tool-input {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tool-input input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 1rem;
}

.tool-button {
    background: #4F46E5;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.tool-button:hover {
    background: #4338ca;
}

.tool-button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

/* Results styling */
.results-container {
    margin-top: 2rem;
}

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

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.result-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
}

.result-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Status messages */
.status-message {
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    display: none;
}

.status-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #a7f3d0;
}

.status-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.status-message.info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* Progress indicators */
.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background: #4F46E5;
    width: 0;
    transition: width 0.3s ease;
}

/* Responsive design */
@media (max-width: 768px) {
    .tool-input {
        flex-direction: column;
    }
    
    .tool-button {
        width: 100%;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
} 