/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    max-width: 1300px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.title {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* List styles */
.site-list {
    list-style: none;
    padding: 0;
}

.site-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #ddd;
}

.site-item:last-child {
    border-bottom: none;
}

.site-link {
    display: flex;
    text-decoration: none;
    color: #333;
    width: 100%;
}

.site-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.site-info {
    flex: 1;
}

.site-title {
    font-size: 1.25rem;
    margin: 0;
    color: #007bff;
}

.site-description {
    margin: 0.25rem 0 0;
    color: #555;
}
/* Modern Back Button Styles */
.back-button {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.back-button:hover {
    background: linear-gradient(135deg, #0056b3, #003d7a);
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.back-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}