/* Custom styles for The Most Useful Websites */

/* System font stack for clean, modern typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'San Francisco', 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Website Table Row Styling */
.website-row {
    transition: all 0.3s ease;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.website-row:hover {
    background-color: #f9f9f9;
}

/* Website Logo Circle Styling */
.website-logo {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Visit Button Styling */
.visit-btn {
    transition: all 0.2s ease;
}

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

/* Category Tab Styling */
.category-tab {
    transition: all 0.2s ease;
}

.category-tab.active {
    border-bottom-width: 2px;
    border-color: #0071e3;
    color: #0071e3;
}

/* Loading Animation Styling */
.loading-indicator {
    display: none;
    margin: 0 auto;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #0071e3;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .website-logo {
        width: 40px;
        height: 40px;
    }
    
    .website-title {
        font-size: 14px;
    }
    
    .website-subtitle {
        font-size: 12px;
    }
    
    .website-description {
        font-size: 13px;
    }
}

.hero-section {
    text-align: center;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: #6e6e73;
    font-weight: 500;
}
.logo a {
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    color: white;
}
button#randomWebsiteBtn {
    font-size: 0.9rem;
    padding: 0.50rem 1rem;
}
nav a {
    color: #fff;
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 500;
    text-decoration: none;
}