/* Базовые стили для парсера рейтинга LiveInternet */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h1 {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.loading {
    text-align: center;
    color: #666;
    font-style: italic;
}

.error {
    color: #d32f2f;
    background-color: #ffebee;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}

.rating-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.rating-table th,
.rating-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.rating-table th {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #555;
}

.rating-table tr:hover {
    background-color: #f5f5f5;
}

.rank {
    font-weight: bold;
    color: #1976d2;
    width: 50px;
}

.site-title {
    font-weight: bold;
    color: #333;
}

.site-url {
    color: #1976d2;
    text-decoration: none;
    font-size: 0.9em;
}

.site-url:hover {
    text-decoration: underline;
}

.stats {
    text-align: right;
    font-size: 0.9em;
    color: #666;
}

.refresh-btn {
    background-color: #1976d2;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin: 20px 0;
}

.refresh-btn:hover {
    background-color: #1565c0;
}

.footer {
    text-align: center;
    margin-top: 30px;
    color: #666;
    font-size: 0.9em;
}