/* Navigation Arrows Styling */
.egh-tc-navigation-arrows {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0; /* A light separator */
}

.egh-tc-back-button,
.egh-tc-forward-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    cursor: pointer;
    background-color: transparent;
    color: var(--steps-purple-dark, #800080);
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

.egh-tc-back-button:hover,
.egh-tc-forward-button:hover {
    background-color: var(--steps-purple-light, #f2e6f2);
    color: var(--steps-purple-dark, #800080);
}

/* Specific alignment for back button if it's the only one */
.egh-tc-navigation-arrows .egh-tc-back-button:only-child {
    margin-right: auto; /* Pushes it to the left */
}

/* Specific alignment for forward button if it's the only one */
.egh-tc-navigation-arrows .egh-tc-forward-button:only-child {
    margin-left: auto; /* Pushes it to the right */
}
