.apple-back-button {
    /* Dimensions & positioning */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* Borders & Shadows */
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    /* Reset button styles */
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}

.apple-back-button:hover {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.25);
    transform: scale(1.05);
}

.apple-back-button:active {
    transform: scale(0.98);
}