/* Custom styles for the Google Partners Directory Scraper */

body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
}

header h1 {
    color: #0d6efd;
    font-weight: 600;
}

.card {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-header {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
}

#log-output {
    font-family: 'Courier New', Courier, monospace;
    color: #212529;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.4;
}

#log-output .log-entry {
    margin-bottom: 0.25rem;
    white-space: pre-wrap;
    word-break: break-word;
}

#log-output .log-entry.info {
    color: #0d6efd;
}

#log-output .log-entry.warning {
    color: #fd7e14;
}

#log-output .log-entry.error {
    color: #dc3545;
}

#download-container {
    margin-top: 1rem;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.progress {
    height: 1.25rem;
    border-radius: 0.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card {
        margin-bottom: 1.5rem;
    }
}

#status-indicator .badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
    border-radius: 0.25rem;
} 