/**
 * Back Button Widget Styles
 */

.pretpot-back-button-wrapper {
    display: block;
}

.pretpot-back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.pretpot-back-button:hover {
    text-decoration: none;
}

.pretpot-back-button-text {
    display: inline-block;
}

.pretpot-back-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.pretpot-back-button-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

/* Mobile: Zero padding default for proper scaling */
@media (max-width: 767px) {
    .pretpot-back-button {
        padding: 0;
    }
}