.back-to-home {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 100;
}

.back-to-home a {
    display: inline-flex;
    align-items: center;
    color: #3498db;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    font-weight: 500;
}

.back-to-home a:hover {
    background-color: #3498db;
    color: white;
    transform: translateX(-3px);
}

.back-to-home a::before {
    content: "←";
    margin-right: 8px;
    font-size: 18px;
}

