/* Common styles shared across all pages */
.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: #fff;
    color: #4caf50;
    border: 2px solid #4caf50;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1000;
}

.back-button:hover {
    background-color: #4caf50;
    color: #fff;
}

.back-button::before {
    content: "←";
    font-size: 1.2rem;
}

/* Add padding to body to account for fixed back button */
body {
    padding-top: 70px !important;
}

@media (max-width: 480px) {
    .back-button {
        top: 10px;
        left: 10px;
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    body {
        padding-top: 60px !important;
    }
} 