body {
    background-color: #f8f9fa;
}

.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    margin-top: 2rem;
}

.form-control, .form-select {
    border-radius: 8px;
}

.btn-primary {
    border-radius: 8px;
    padding: 0.5rem 2rem;
}

#results {
    text-align: left;
}

.tab-pane {
    max-height: 500px;
    overflow-y: auto;
}

.metadata-item {
    margin-bottom: 0.5rem;
}

.screenshot-container {
    text-align: center;
}

.screenshot-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.scrape-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.scrape-options .btn {
    min-width: 100px;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    background-color: white;
    border-color: #6c757d;
    color: #6c757d;
}

.scrape-options .btn:hover {
    background-color: #f8f9fa;
    border-color: #6c757d;
    color: #6c757d;
}

.scrape-options .btn.active {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

#scrapeForm button[type="submit"] {
    padding: 0.5rem 2rem;
    font-size: 1rem;
    min-width: 140px;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.card-body {
    position: relative;
    min-height: 200px;
}

.btn-group {
    gap: 0.5rem;
}

.url-tabs {
    margin-top: 1rem;
}

.url-tabs .nav-tabs {
    margin-bottom: 1rem;
}

.url-tabs .nav-link {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
}

#resultTabs .nav-link {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Update tab styles */
#mainTabs {
    border-bottom: 2px solid #dee2e6;
}

#mainTabs .nav-link {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

#mainTabs .nav-link.active {
    border-bottom-color: #0d6efd;
    color: #0d6efd;
}

/* Update form styles */
.scrape-form {
    max-width: 600px;
    margin: 0 auto;
}

.scrape-form input[type="number"] {
    width: 100px;
}

/* Add these styles */
.input-group {
    border-radius: 8px;
    overflow: hidden;
}

.input-group-text {
    background-color: #f8f9fa;
    border-color: #ced4da;
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    border-color: #ced4da;
    box-shadow: none;
}

/* Add these styles */
.container-fluid {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
}

#authModal .modal-footer {
    justify-content: space-between;
}

#logoutBtn {
    margin-right: auto;
} 