.action-button-container {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.action-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 0;
    background-color: transparent;
    border: none;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.action-button:hover {
    background-color: transparent;
    color: var(--text-primary);
    opacity: 1;
}

.action-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 0.85em;
}

.action-button:hover i { transform: translateX(6px); }
